$(document).ready(function(){//FOR THE DROPDOWN	$('#nav ul li').mouseenter(function(){						$(this).find('ul').css('display','block')		$(this).mouseleave(function(){			$(this).find('ul').css('display','none')		})	})											})
