var delay_dropdown_show=500
var delay_dropdown_hide=250

$(document).ready(function(){
		$('#nav li').hover(
			function() { $(this).addClass("dropdown"); $('ul', this).slideDown(delay_dropdown_show); $('ul', this).css('z-index','10000');}, // not effective z
			function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
			//$('li').add('p').css('background-color', 'red');
		);
});

