var delay_dropdown_show=500
var delay_dropdown_hide=250

$(document).ready(function(){
		$('#nav li').hover(
			function() { $(this).addClass("current"); $('.dropdown', this).slideDown(delay_dropdown_show); },
			function() { $('.dropdown', this).slideUp(delay_dropdown_hide); $(this).removeClass("current"); }
		);
});
