var allNav = new Array('home','blog','performances','about','castAndCreative','music','press','contact');

function preLoad() {
	for (i=0; i<allNav.length; i++) {
		var each = new Image();
		each.src="/images/nav_" + allNav[i] + "_on.jpg";
	}
}

preLoad();


function on(name) {
	document[name].src="/images/" + name + "_on.jpg";
}

function off(name) {
	document[name].src="/images/" + name + ".jpg";
}


function popup(whichPage) {
	thePopup = window.open("/popup/"+whichPage,'popup','width='+theWidth+',height='+theHeight+',screenX=150,screenY=150,left=150,top=150,status=yes,scrollbars=auto,titlebar=yes,location=no,menubar=yes,personalbar=no');
	thePopup.focus();
}



