var templateURL = "juju";

var about_off = new Image();
var about_over = new Image();
var about_on = new Image();

function init(url) {
	templateURL = url;
	
	about_off.src = templateURL + "/images/About_off.png";
	about_over.src = templateURL + "/images/About_over.png";
	about_on.src = templateURL + "/images/About_on.png";

}

function img_on(imgName) {
	document[imgName].src = eval(imgName + "_on.src");
}

function img_over(imgName) {
	document[imgName].src = eval(imgName + "_over.src");
}

function img_off(imgName) {
	document[imgName].src = eval(imgName + "_off.src");
}



//no errors before the applet is done loading                    
window.onerror=null;

