/*
 * This is the JQuery for the menu hover
 *
 */
$(document).ready(function(){
	$("#navmenu li").bind("mouseenter",function(){
		$("ul", this).fadeIn("fast");
	}).bind("mouseleave",function(){
		$("ul", this).fadeOut("fast");
	});
});
