<!-- Begin --

function preloadGIF() {

            for (var x = 0; x < GIFimages.length; x++) {
			    var temp = makeId(GIFimages[x]);
                eval("MO"+temp +"= new Image()");
                eval("MO"+temp+".src = '"+GIFimages[x]+".gif'");
				eval("MO"+temp+"on = new Image()");
                eval("MO"+temp+"on.src = '"+GIFimages[x]+"on.gif'");

            }
			donepreGIF = 1;
        }

		
function makeId(path) {
            return path.substring( path.lastIndexOf("/")+1,99);
        }


function displayon(a)
{
document.getElementById(a).src = eval("MO"+a+"on.src");
}


function displayoff(a)
{
document.getElementById(a).src = eval ("MO"+a+".src");
}
		

 function hideimg(a,b){
   	  if (ie) document.all[a].style.visibility='hidden'; if (ie) document.all[b].style.visibility='hidden';
   	  if (n) document.layers[a].style.visibility='hidden'; if (n) ddocument.all[b].style.visibility='hidden';
   	  if (n6) document.getElementById(a).style.visibility='hidden'; if (n6) document.getElementById(b).style.visibility='hidden';
}



 function showimg(a,b){
   	 if (ie) document.all[a].style.visibility='visible'; if (ie) document.all[b].style.visibility='visible';
	 if (n) document.layers[a].style.visibility='visible'; if (n) document.all[b].style.visibility='visible';
   	 if (n6) document.getElementById(a).style.visibility='visible'; if (n6) document.getElementById(b).style.visibility='visible';
}

preloadGIF();

// End -->