var cSection = null;
var cSubsection = null;

var pn = document.location.pathname.substr(1);
var splittedPath = pn.split("/");

cSection = splittedPath[0];
if (splittedPath.length == 3) { cSubsection = splittedPath[1]; }
if (splittedPath.length == 1) { cSection = 'home'; }


function chBg(o, s) {
	if (o.id != cSection) {
		o.style.background = 'url(/images/menubutton_background_'+s+'.gif)';
	}
}

function chSub(o, s) {
	o.style.backgroundColor = s;
}

function toggleMenu(o) {
	alert(o);
}

function goToUrl(u) {
	document.location.href = u;
}

menuBgImg = new Image();
menuBgImg.src = "/images/menubutton_background_on.gif";

