$(document).ready(function(){
	$('#nav li ul').each(function() {
		$(this).css({left: "4px"}).hide();
	});
	
	$('#dropUl').fadeTo(50, 0.90)
	
	$('#nav .drop').hover(function(){
		$(this).children('ul').slideDown(200);
	}, function() {
		$(this).children('ul').slideUp(200);
	
	});
	
});