
/*
Rollover function created by Kal hadi on 10/1/2002
*/
	function imgRolloverOn()
	{
		this.imgSave = document.images[this.imgName].src;
		document.images[this.imgName].src = this.imgOn.src;
	}
	
	function imgRolloverOff()
	{
		document.images[this.imgName].src = this.imgSave;
	}
	
	function Rollover(imgName, on)
	{
		this.imgName = imgName;
		this.imgOn = new Image();
		this.imgOn.src = on;
		this.on = imgRolloverOn;
		this.off = imgRolloverOff;
	}

