<!--
function preloadImages() {
	document.preload = new Array();
	if (document.images) {
		for (var i = 0; i < preloadImages.arguments.length; i++) {
			document.preload[i] = new Image();
			document.preload[i].src = preloadpath + preloadImages.arguments[i];
		}
	}
}

function Over(image) { if(image && document.images && image.src.indexOf("_on.gif")==-1)
{image.src = image.src.substring(0,(image.src.indexOf(".gif"))) + "_on.gif";}}
function Out(image) { if(image && document.images && image.src.indexOf("_on.gif")!=-1)
{image.src = image.src.substring(0,(image.src.indexOf("_on.gif"))) + ".gif";}}


function Overtype(image, filetype) { if(image && document.images && image.src.indexOf("_on."+filetype)==-1) 
{image.src = image.src.substring(0,(image.src.indexOf("."+filetype))) + "_on."+filetype;}} 
function Outtype(image, filetype) { if(image && document.images && image.src.indexOf("_on."+filetype)!=-1) 
{image.src = image.src.substring(0,(image.src.indexOf("_on."+filetype))) + "."+filetype;}}
//-->