jQuery(document).ready(function(){
								
			/**/jQuery('#nav ul').superfish({
               delay:       800,
               animation:   {height:'show'},
               speed:       300,
               autoArrows:  false,
               dropShadows: false,
               hoverClass:  'sfHover',	 
               disableHI:   false
            });
  			jQuery('.pj_vmenu ul.menu-flyout').superfish({
               delay:       800,
               animation:   {height:'show'},
               speed:       300,
               autoArrows:  false,
               dropShadows: false,
               hoverClass:  'sfHover',	 
               disableHI:   false
            });
			
			
	/*top-level item colors flyout and accordion*/
			jQuery('.pj_vmenu ul.menu-flyout li:not(.active),.pj_vmenu ul.menu-accord li:not(.active) a,.pj_vmenu ul.menu-accord li:not(.active)>span').hover(function() { 
			jQuery(this)
				.animate({backgroundColor: "#333"}, "fast") 
			}, function() { 
			jQuery(this).animate({ backgroundColor: "#38A5CB" }, "normal");  
			});  
	 		
			  
				/*sub-menu item colors*/
			jQuery('.pj_vmenu ul.menu-accord li li:not(.active) a,.pj_vmenu ul.menu-accord li li:not(.active)>span').hover(function() { 
			jQuery(this)
				.animate({backgroundColor: "#333"}, "fast") //red
			}, function() { 
			jQuery(this).animate({ backgroundColor: "#38A5CB" }, "normal");  
			}); 
		
			
	 		jQuery('#sf ul ul li:not(.active)').hover(function() { 
			jQuery(this)
				.animate({backgroundColor: "#8D955F"}, "fast")
			}, function() { 
			jQuery(this).animate({ backgroundColor: "#000" }, "normal");  
			});  
				
			
			jQuery(".pj_vmenu ul.menu-accord li ul").hide();
			jQuery(".pj_vmenu ul.menu-accord li span").click(function(){
				jQuery(this).next(".pj_vmenu ul.menu-accord").slideToggle("slow").siblings("li:visible").slideUp("slow");
				jQuery(this).toggleClass("active");
				jQuery(this).siblings("li").removeClass("active");
			},
			function () {	});
			
});










