// Get the basename of the URL
var currPage=location.href.substr(location.href.lastIndexOf("/")+1)

// Get the cells of the top menu
var cells=document.getElementById('topMenu').rows[0].cells

// disable the hyperlink on current page
switch(currPage) {
	case "galleries.html": 
		cells[0].innerHTML="Home"
		break;
	case "about.html": 		cells[2].innerHTML="About"
		break;
	case "shop.html": 
		cells[6].innerHTML="Shop"
		break;
}

