	function swapVideo(movie){
	document.getElementById("quicktime").innerHTML = "<OBJECT CLASSID='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' CODEBASE='http://www.apple.com/qtactivex/qtplugin.cab' width='320' height='255'><PARAM name='SRC' VALUE='../movies/"+ movie +".mov'><PARAM name='CACHE' VALUE='false'><PARAM name='AUTOPLAY' VALUE='true'><PARAM name='CONTROLLER' VALUE='true'><EMBED SRC='../movies/" + movie + ".mov' align='top' AUTOPLAY='true' width='320' height='255' CACHE='false' CONTROLLER='true' PLUGINSPAGE='http://www.apple.com/quicktime/download/'></EMBED></OBJECT>";
	}
	var freshpair, rainn, fast;
	freshpair = 0;
	rainn = 0;
	fast = 0;
	function menu(menu){
		if (menu == "freshlist"){
			if (freshpair % 2 == 0){
				document.getElementById(menu).style.display = "block";
				freshpair++;
			}
			else{	
				document.getElementById(menu).style.display = "none";
				freshpair++;
			}
		}
		else if (menu == "rainnlist"){
				if (rainn % 2 == 0){
				document.getElementById(menu).style.display = "block";
				rainn++;
			}
			else{	
				document.getElementById(menu).style.display = "none";
				rainn++;
			}
		}
		else if (menu == "fastlist"){
				if (fast % 2 == 0){
				document.getElementById(menu).style.display = "block";
				fast++;
			}
			else{	
				document.getElementById(menu).style.display = "none";
				fast++;
			}
		}
	}
	
function pop(x,y,z) {
var h,w,l,t //height, width, left, top
h = screen.height
w = screen.width 
l = parseInt((w-y)/2)
t = parseInt((h-z)/2)
popupWin = window.open(x,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+ y +',height='+ z +',left='+ l +',top='+ t +'+');
}