$(document).ready(function(){ 
						   
	$("#navigator li").hover(function(){//over
		$("ul", this).fadeIn("fast");
		$("ul ul", this).hide();
	}, function(){//out
		$("ul", this).fadeOut("fast");
	});

	if ( $("#orderform").length ) { $("#orderform").validate(); }

 });
