$(function() {
	jQuery("#mainMenu a.headLink").each(
		function(i, elm){
			jQuery(elm).parent().hover(
			  function () {
				jQuery(this).children().filter("ul:first").fadeIn("slow");
			  }, 
			  function () {
				jQuery(this).children().filter("ul:first").css("display", "none");
			  }
			);
		}
	)
	
	jQuery("#mastHead p").click(function(p_event){
		document.location = "/";
		p_event.preventDefault();
	})
	
});
