// JavaScript Document

window.onload = rolloverInit;

function rolloverInit() {
	rolloverInit2("suzytop","suzytopImg",14);
}

function rolloverInit2(x1,x2,x3) {
	var linkObj = document.getElementById(x1);
	var imgObj = document.getElementById(x2);
	if (linkObj && imgObj) { 
		setupRollover(linkObj,imgObj,x3);
	}
}

function setupRollover(thisLink,thisImage,x3) {
  	thisLink.imgToChange = thisImage;
	thisLink.onmouseout = rollOut;
	thisLink.onmouseover = rollOver;
	
	thisLink.outImage = new Image();
	thisLink.outImage.src = thisImage.src;
	
	thisLink.overImage = new Image();
	thisLink.overImage.src = imgs[x3].src;
}

function rollOver() {
	this.imgToChange.src = this.overImage.src;
}

function rollOut() {
	this.imgToChange.src = this.outImage.src;
}


