$(document).ready(function(){
	$(".home #content div.events div div:nth-child(1),.home #content div.events div div:nth-child(2)").show();
		
	$("div.menu ul li").hover(function(){
		$(this).find("ul:first").fadeIn().slideDown();
	}, function(){
		$(this).find("ul:first").fadeOut().slideUp();
	});
	
	$("div.menu ul ul li").hover(function(){
		$(this).find("ul:first").fadeIn().slideRight();				  
	}, function(){
		$(this).find("ul:first").fadeOut().slideLeft();
	});
});
