﻿/*
 * WiredText
 * http://www.WiredText.com
 * 
 * Copyright (c) 2009 WIREDTEXT INC.
 *
 * Date: 2009-01-01 
 * Revision: 02.00.00
 *
 * Requires jQuery version 1.3.1+
 */
 
 
 //Image Rollovers
function wt_setRolloverImages(){
	$("img.rollover").hover(
	    function(){
		    this.src = this.src.replace(".jpg","_over.jpg");
		 },
		 function(){
		    this.src = this.src.replace("_over.jpg",".jpg");
		 }
	);
}



