<!--

	function rollOver(img, file) {
		if(img.getAttribute('orgSrc') == null) {
			img.setAttribute('orgSrc', img.src);
			//alert(img.getAttribute('orgSrc'));
			eval("img.onmouseout = function anonymous() { swapImage(this,'"+img.src+"'); }");
		}
		
		swapImage(img, file);
	}
	
	function swapImage(img, file) {
		img.src=file;
	}
	
	function testImage(url) {
			var tester = new Image();	
			tester.onError = alert(url+' Not Found...');					
			tester.onLoad = alert(url+' Loaded...');
			tester.src = url;
	}

//-->