/* Author: 

*/

$(function(){
	//DropDown Menu
	$('nav ul li').hover(function(){
		$('ul', this ).stop(true,true).fadeIn('fast');
	}, function(){
		$('ul', this).stop(true,true).hide();
	});

});

























