function nav(){
	$('#nav ul ul').css({display: 'none'});
	$('#nav ul li').hover(function(){
	$(this).find('ul:first').css({ display: 'block', display: 'none'}).fadeIn('2500');
    },

function(){
	$(this).find('ul:first').css({ display: 'none'});
});

}
$(document).ready(function() {
nav();
});
