<!--function addLoadEvent(func) {var oldonload = window.onload;if (typeof window.onload != 'function') {window.onload = func;} else {window.onload = function() {oldonload();func();}}}//  autoOnStateaddLoadEvent(function() {l=window.location.toString(); s=l.split("/");	// ********* CHANGE ME  ****************************************************************	f=s[4]; // Change this number to the number of slashes in the URL before the home page		if (f == "index.html" || f == "") {		return;	}	else {		cn = "n-" + f;		var nli = document.getElementById(cn);		nli.className+="location";	}})// table strippingaddLoadEvent(function() {	var t = document.getElementsByTagName("table");	for (var i=0; i<t.length; i++) {		if (t[i].className == "striped") {			var trs = t[i].getElementsByTagName("tr");			for (var j=0; j<trs.length; j++) {				if (j%2 == 1){} 				else {trs[j].className+="ruled";}			}		}			}})//Suckerfish dropdown hack for IEaddLoadEvent(function() {if (document.all) { 	var li = document.getElementById("nav").getElementsByTagName("li");	for (var i=0; i<li.length; i++) {		li[i].onmouseover=function() {			if(this.className != "nosub" || this.className != "nosublocation") {				this.className+="iewin";			}		}		li[i].onmouseout=function() {			if (this.className == "locationiewin") {				this.className=this.className.replace(new RegExp("locationiewin\\b"), "location");			}					else {				this.className=this.className.replace(new RegExp("iewin\\b"), "");			}		}	}	}	else {		return;		}})//random image load on homepageaddLoadEvent(function() {	// p = number of photos to make random	var p = 5;	var nums = new Array()	var j;j=parseInt(Math.random()*p);j=(isNaN(j))?0:j;j=j+1;	var e = document.getElementById("random-photo");	e.className+="rphoto"+j;})