$(document).ready(function () {
	$('#nav li').hover(
		function () {
			//show the submenu
			$('ul', this).fadeIn(250);
		},
		function () {
			//hide the submenu
			$('ul', this).fadeOut(250);
		}
	);
});

