var allNav = new Array('home','synopsis','biographies','press','about','listen','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,theWidth,theHeight) {
	thePopup = window.open(whichPage,'popup','width='+theWidth+',height='+theHeight+',screenX=150,screenY=150,left=150,top=150,status=yes,scrollbars=yes,titlebar=yes,location=no,menubar=yes,personalbar=no');
	thePopup.focus();
}




