$(document).ready(function() { 
	// hiding the menu
	$('#nav li ul').hide();
	
	// override wide left margin
	$('#nav li ul').css({left : "0"});
	
	// menu animation "hover"
	$('#menu li').hover( function() {
	$('ul', this).stop(true,true).slideDown('fast');
	}, function() {
	$('ul', this).stop(true,true).slideUp('fast');
	});     

});
