function onLoad()
	{
        	c1on = new Image();
        	c1on.src = "http://www.tactim.com/html/img/fullyellow.gif";
        	c2on = new Image();
        	c2on.src = "http://www.tactim.com/html/img/fullblue.gif";
        	c3on = new Image();
        	c3on.src = "http://www.tactim.com/html/img/fullred.gif";
        	c1off = new Image();
        	c1off.src = "http://www.tactim.com/html/img/circleyellow.gif";
        	c2off = new Image();
        	c2off.src = "http://www.tactim.com/html/img/circleblue.gif";
        	c3off = new Image();
        	c3off.src = "http://www.tactim.com/html/img/circlered.gif";   
			c1color = "#DE8F14";
			c2color = "#00A3DF";
			c3color = "#DE1608";     	
	}

onLoad();

function img_act(imgName) {
    imgOn = eval(imgName + "on.src");
	cl = eval(imgName + "color");
    document.getElementById(imgName).src = imgOn;
	document.getElementById(imgName+"t").style.color = cl;
}

function img_inact(imgName) {
    imgOff = eval(imgName + "off.src");
    document.getElementById(imgName).src = imgOff;
	document.getElementById(imgName+"t").style.color = "#000";
}