if (document.images)
{
img1on = new Image ;img1off = new Image ;
img2on = new Image ;img2off = new Image;
img3on = new Image ;img3off = new Image;

img1on.src = "/templates/cp/images/trespass_blue.jpg";img1off.src = "/templates/cp/images/trespass_green.jpg";
img2on.src = "/templates/cp/images/sportdivision_grey.jpg";img2off.src = "/templates/cp/images/sportdivision_green.jpg";
img3on.src = "/templates/cp/images/tsunami_white.jpg";img3off.src = "/templates/cp/images/tsunami_green.jpg";

}

function img_act(imgName) {
if (document.images)
{ imgOn = eval (imgName + "on.src");
document [imgName].src = imgOn; } }

function img_inact(imgName) {
if (document.images)
{ imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff; } }

