$(document).ready(function() {
	$('#menu li').hover( 
		function (){
			$(this).children("ul").fadeIn("fast");
		},
		function() {
			$(this).children("ul").fadeOut("fast");
	});
	
	
        	$("#content").fadeIn("slow");
	});