$(function(){
	
	$('#nav li').live('mouseenter mouseleave', function(event){
		
		if ($(this).find('.dropdown').size() > 0){
		
			if (event.type == 'mouseenter'){
				$(this).find('.dropdown').stop(true, true).fadeIn();	
			} else {
				$(this).find('.dropdown').hide();	
			}
		
		}
		
	});
	
	
});

