$(function() {
	
	$("#header ul > li").hover(function(event) {
		$(this).addClass("hover");
		//$("ul", this).slideDown();
	}, function(event) {
		$(this).removeClass("hover");
		//$("ul", this).slideUp();		
	});
		
	
	
});
