<!--
//image preloader
function PI_preloadimages() {
	if (document.images){
		if(typeof(document.PI)=='undefined'){
			document.PI = new Object();
		}
		document.PI.loadedImages = new Array();
		var im= PI_preloadImages.arguments;
		for(i=0;i<im.length;i++){
			document.PI.loadedImages[i] = new Image();
			document.PI.loadedImages[i].src = im[i];
		}
	}
}

function swapImage(name,swap){
document.images[name].src=swap;
}

//-->
