$(document).ready(function() {
	$('#nav ul ul li').hover(function(){
			$(this).children('ul').css({'display':'block'});   
	});
});
