$(document).ready(function(){
	$("#menu a").each(function(){
		loc = window.location+"";
		loc = loc.replace(/https?:\/\//, "");
		loc = loc.substring(loc.indexOf("/"));

		url = $(this).attr("href");

		if ((url == "/" || loc.substring(0, url.length) != url) && url != loc) {
			hideMenuItem($(this));
		}
	});
});

function hideMenuItem(item) {
	item.addClass("hide");
	var oldText = item.text();
	item.text("");
	item.mouseover(function(){
		$(this).text(oldText).removeClass("hide");
	});
}
