(function($){
	$().ready(function(){
		$(".AspNet-Menu>li>ul", ".navigation").each(function(){
			if ($(this).prev().is("a")) {
				var a = $(this).parent();
				$(a).bind("mouseover", function(){
					$(">a",this).addClass("hover");
					$(">ul",this).show();
				});
				$(a).bind("mouseout", function(){
					$(">a",this).removeClass("hover");
					$(">ul",this).hide();
				});
			}
		});
	});
})(jQuery);