$(document).ready(function() {
	$("#content .contentBox .topNav > ul > li > a").each( function() {
		if(!$(this).attr("href")) {
			$(this).attr("href", "#").click( function() {
				return false;
				}).mouseover( function() {
					$(this).parent("li").children("ul").stop(true).show().fadeTo("fast", 1); 
				}).mouseout( function() {
					$(this).parent("li").children("ul").stop(true).fadeOut("slow");
			});
		}
	});
	$("#content .contentBox .topNav > ul > li > ul > li > a").each( function() {
		$(this).mouseover( function() {
				$(this).parent("li").parent("ul").stop(true).fadeTo("fast", 1); 
			}).mouseout( function() {
				$(this).parent("li").parent("ul").stop(true).fadeOut("slow"); 
		});
	});
});

