$(document).ready(function(){
	$('#menu li.drop').hover(
		function() { 
			$('.list', this).show();
		},
		function() {
			$('.list', this).hide();
		}
	);
});
