$(document).ready(function() {
	
			
		$("#contactForm").validate();

		
	//subMenu Dropdown menu	
	
		  function addSubMenu(){
					$(this).find(".subMenu").stop().fadeTo('fast', 1).show();
			}
	
		  function removeSubMenu(){
				  $(this).find(".subMenu").stop().fadeTo('fast', 0, function() {
					  $(this).hide(); 
				  });
				}

			var subMenuConfig = {
				 interval: 200,
				 sensitivity: 8,
				 over: addSubMenu,
				 timeout: 200,
				 out: removeSubMenu
			};

			$("ul#mainMenu li .subMenu").css({'opacity':'0'});
			$("ul#mainMenu li").hoverIntent(subMenuConfig);
		
	});
