$(document).ready(function () {
	$('#nav li').hover(
		function () {
			//show its submenu
			$(this).addClass("hover");
			$('ul', this).fadeIn(0);
		}, 
		function () {
			//hide its submenu
			$(this).removeClass("hover");
			$('ul', this).fadeOut(0);			
		}
	);
	$('#nav-contact li').hover(
		function () {
			//show its submenu
			$(this).addClass("hover");
			$('ul', this).fadeIn(0);
		}, 
		function () {
			//hide its submenu
			$(this).removeClass("hover");
			$('ul', this).fadeOut(0);			
		}
	);
});


