 jQuery(document).ready(function() {
      jQuery('ul.sf-menu').sooperfish({
    dualColumn  : 12, //if a submenu has at least this many items it will be divided in 2 columns
    tripleColumn  : 18, //if a submenu has at least this many items it will be divided in 3 columns
    hoverClass  : 'sfHover',
    delay    : 300, //make sure menus only disappear when intended, 500ms is advised by Jacob Nielsen
    animationShow  : {height:'show'},
    speedShow    : 300,
    easingShow      : 'linear',
    animationHide  : {height:'hide',opacity:'hide'},
    speedHide    : 200,
    easingHide      : 'linear',
    autoArrows  : false
      });
         
	jQuery("#nav #btn_comp ul").hover(function() {
		jQuery("#nav > #btn_comp > a").addClass("active");
		},
 	 function () {
   		 jQuery("#nav > #btn_comp > a").removeClass("active");
  	
		});
		
		jQuery("#nav #btn_engi ul").hover(function() {
		jQuery("#nav > #btn_engi > a").addClass("active");
		},
 	 function () {
   		 jQuery("#nav > #btn_engi > a").removeClass("active");
  	
		});
		
		jQuery("#nav #btn_serv ul").hover(function() {
		jQuery("#nav > #btn_serv > a").addClass("active");
		},
 	 function () {
   		 jQuery("#nav > #btn_serv > a").removeClass("active");
  	
		});
		
		jQuery("#nav #btn_company ul").hover(function() {
		jQuery("#nav > #btn_company > a").addClass("active");
		},
 	 function () {
   		 jQuery("#nav > #btn_company> a").removeClass("active");
  	
		});
		
			jQuery(function() {
		jQuery("#side-nav > ul > li").hover(
			function() {
				jQuery(this).addClass("active2");
			},
			function() {
				jQuery(this).removeClass("active2");
			}
		);
	});
		
								
		jQuery(function() {
		jQuery(".inven-search").hover(
			function() {
				jQuery(".inven-search").animate({backgroundColor: '#880102'}, 1000);
			},
			function() {
				jQuery(".inven-search").animate({backgroundColor: '#df0205'}, 500);
			}
		);
	});
		
		jQuery(function() {
		jQuery(".learn-more").hover(
			function() {
				jQuery(this).animate({backgroundColor: '#880102'}, 1000);
			},
			function() {
				jQuery(this).animate({backgroundColor: '#df0205'}, 500);
			}
		);
	});
	
jQuery("#account-tools li:even").addClass("even");	
		
	});
	
	
	

