jQuery(document).ready(function () {

	jQuery('#nav li').hover(
		function () {
			//show dropdown menu
			jQuery('ul', this).fadeIn(300);

		}, 
		function () {
			//hide dropdown menu
			jQuery('ul', this).fadeOut(300);
		}
	);
	
});
