 $(document).ready(function(){
	$('.hoverme').hover(
		function(){
			this.src=this.src.replace(/.gif/, ".on.gif");
		},
		function(){
				this.src=this.src.replace(/.on.gif/, ".gif");
		}
	)
});