function Rollover(imageId,rolloverPicPath) {
	var rolloverImage,rolloverImgSrc,rolloutImgSrc;

	this.imageObject=document.getElementById(imageId);
	rolloverImage= new Image();
	rolloverImage.src=rolloverPicPath;
	this.rolloutImageSrc=this.imageObject.src;
	this.rolloverImageSrc=rolloverPicPath;

	rolloverImgSrc=this.rolloverImageSrc;
	rolloutImgSrc=this.rolloutImageSrc;
	this.imageObject.onmouseover= function () {
		this.src=rolloverImgSrc;
		this.style.cursor="pointer";
	}
	this.imageObject.onmouseout= function () {
		this.src=rolloutImgSrc;
	}
	
}