// JavaScript Document

var $j = jQuery.noConflict();

$j(function(){
//===================================== section ========================================//

//===================================== drop down menu ==========================================//


 $j("ul.dropdown li").hover(function(){
    
        $j(this).addClass("hover");
        $j('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $j(this).removeClass("hover");
        $j('ul:first',this).css('visibility', 'hidden');
    
    });
    
    $j("ul.dropdown li ul li:has(ul)")
		.find("a:first")
		.append(" &raquo; ") /*THIS PUTS THE >> AFTER THE WORD*/
		/*.prepend(" &laquo; ") THIS PUTS THE << BEFORE TO THE WORD*/
		;

//===================================== compliance agree box ==========================================//
$j('#agreewithtermsofplugin').click(function() {
	if($j(this).is(':checked')){
		$j('#ordercomplianceplugin').removeAttr('disabled');
    }else{
		$j('#ordercomplianceplugin').attr('disabled', 'disabled');
	}
  });	

//===================================== code ==========================================//
/*$j("pre").hover(function() {
	var codeInnerWidth = $j("code", this).width() + 10;
    if (codeInnerWidth > 563) {
		$j(this)
			.stop(true, false)
			.css({
				zIndex: "100",
				position: "relative"
			})
			.animate({
				width: codeInnerWidth + "px"
			});
		}
	}, function() {
			$j(this).stop(true, false).animate({
				width: 563
		});
	});

*/
	
//===================================== end ==========================================//	
});//doc ready
	
	
	
	


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	