// JavaScript Document
 $(document).ready(function() {
	
//drop-down menus
	
	$("#header ul li").hover(function() {
		$(this).parent("ul").addClass("hover"),
		$(this).addClass("hover"),
		$(this).children("ul").animate({opacity: "show"}, "fast");
		
		}, 
		
	function() {
		$(this).parent("ul").removeClass("hover"),
		$(this).removeClass("hover"),
		$(this).children("ul").hide();
	
		});
	
});
 
 
	
