// JavaScript Document

function rollOver(img_name, img_src){
   $(img_name).src = img_src;
}
   
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function changeImage(imgtochange,id) {
	oldstring = document.getElementById('img1').src.replace("w270","w135")
	newstring = document.getElementById('img'+id).src.replace("w135","w270")
	document.getElementById('img1').src = newstring;
	newstring = newstring.replace("small_","");
	thisstring = newstring.split("/");
	
	document.getElementById('link1').href="proppics/"+thisstring[thisstring.length-1]	
	
	document.getElementById('img'+id).src = oldstring
}