﻿/*
 * Requires jQuery version 1.3.1+
 */
 
 
 //Image Rollovers
function wt_setRolloverImages(){
	$("img.rollover").hover(
	    function(){
	    this.src = this.src.replace(".jpg", "_over.jpg");
	    this.src = this.src.replace(".gif", "_over.gif");
		 },
		 function(){
		 this.src = this.src.replace("_over.jpg", ".jpg");
		 this.src = this.src.replace("_over.gif", ".gif");
		 }
	);
}




