jQuery(document).ready(function(){
			jQuery('#nav ul').superfish({
               delay:       800,
               animation:   {opacity:'show', height:'show', width:'show'},
               speed:       500,
               autoArrows:  false,
               dropShadows: false,
               hoverClass:  'sfHover',	 
               disableHI:   false
            });
  			jQuery('.pj_vmenu ul.menu-flyout').superfish({
               delay:       800,
               animation:   {height:'show'},
               speed:       500,
               autoArrows:  false,
               dropShadows: false,
               hoverClass:  'sfHover',	 
               disableHI:   false
            });
			
			jQuery('#contentcolumn a, #articles a,#toppanel a').hover(function() { 
			jQuery(this)
				.animate({color: "#ffffff"}, "fast") //blue
			}, function() { 
			jQuery(this).animate({color: "#6D7B8D" }, "normal");  
			}); 
			
			/*top-level item colors*/
			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: "#1B262A"}, "fast") //blue
			}, function() { 
			jQuery(this).animate({ backgroundColor: "#222222" }, "normal");  
			});  
			/*sub-menu item colors*/
			jQuery('.pj_vmenu ul.menu-flyout li li:not(.active),.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: "#611B1C"}, "fast") //red
			}, function() { 
			jQuery(this).animate({ backgroundColor: "#191919" }, "normal");  
			});  
	 		jQuery('#sf ul ul li:not(.active)').hover(function() { 
			jQuery(this)
				.animate({backgroundColor: "#1B262A"}, "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 () {	});
			
			
});

