var Preload = new Array('home','galleria','acting','commercials','stunts','links','contact');



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


// POPUP WINDOWS
	function popUp(page) {
		newWindow = window.open(page,'display','width=450,height=450,menubar=yes,resize=no,titlebar=no,status=no,toolbar=no,scrollbars=yes');
		newWindow.focus();
	}
	
	
	function viewPhoto(whichPhoto) {
		newWindow = window.open('photoViewer.php?f='+whichPhoto,'galleria','width=800,height=600,menubar=yes,resizable=yes,titlebar=no,status=yes,toolbar=no,scrollbars=yes');
		newWindow.focus();
	}