jQuery.easyDropDowns = function(){
		$('#top-nav li').hover(
				 function () {
						//show its submenu
						$('ul', this).stop(false, true).slideDown(200);
		 				$(this).addClass('hover');
				 }, 
				 function () {
						//hide its submenu
						$('ul', this).slideUp(100).stop(false, true);  
						$(this).removeClass('hover');
				 }
		);
}



