function soopaSetup() {
	var img, sh, sn, thelink
	for (var i = 0; (img = document.images[i]); i++) {
		if (img.getAttribute) {

			sn = img.getAttribute("src");
			sh = img.getAttribute("id");

			if (sn != "" && sn != null) {
				img.n = new Image();
				img.n.src = img.src;
			
				
				if (sh != "" && sh != null && sh != "heightadjust") {
					img.h = new Image();
					img.h.src = 'img/'+sh+'o.gif';
					img.onmouseover = soopaSwapOn
					img.onmouseout  = soopaSwapOff
				}

			}
		}
	}

	for (var i = 0; (thelink = document.links[i]); i++) {
		if (thelink.getAttribute) {
			thelink.onmouseover = rollover;
			thelink.onfocus = rollover;
			thelink.onmouseout  = rolloff;
			thelink.onblur  = rolloff;
		}
	}
}

function soopaSwapOn() {
	this.src = this.h.src;
}

function soopaSwapOff() {
	this.src  = this.n.src;
}

function rollover() {
	thehref=this.href;
	endhref=thehref.length;
	if(thehref.substr((endhref-1), endhref)=="/"){
		thehref=thehref.substr(0,(endhref-1));
	}
	thehref=thehref.replace("http://","");
	thehref=thehref.replace("https://","");
	theid=this.id;
	window.status="[ "+thehref+" ]     "+this.title;
	return true;
}

function rolloff(){
	window.status=" ";
	return true;
}