	function doImgOver(obj) {
	
		qryStr = "";
	
		if (obj.src.indexOf("?")) {
			aTemp = obj.src.split("?");
			obj.src = aTemp[0];
			qryStr = aTemp[1];
		}
	
		ext = obj.src.substring(obj.src.length - 3);

		obj.src = obj.src.substring(0, obj.src.length - 4) + "_on." + ext;
			
	}
	
	function doImgOut(obj) {
	
		qryStr = "";
	
		if (obj.src.indexOf("?")) {
			aTemp = obj.src.split("?");
			obj.src = aTemp[0];
			qryStr = aTemp[1];
		}
	
		ext = obj.src.substring(obj.src.length - 3);

		obj.src = obj.src.substring(0, obj.src.length - 7) + "." + ext;
	
	}
