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); },
		function() { $('ul', this).slideUp(delay_dropdown_hide); $(this).removeClass("dropdown"); }
	);
});

