

function changeImage(caller) {
	var imgElem = caller.firstChild;
	if(imgElem.src.indexOf('_lo')>0){
   		imgElem.src = imgElem.src.replace(/_lo/, '_hi'); 
   	} else {
		imgElem.src = imgElem.src.replace(/_hi/, '_lo'); 
   	}
}