	
	IMG = {};
	
	IMG.ImgRollover = {
		init: function(){
		  this.ImgPreload();
		
		  $(".OverImgs").hover(
			 function () { $(this).attr('src', IMG.ImgRollover.NormalImg($(this).attr('src'))); },
			 function () { $(this).attr('src', IMG.ImgRollover.HoverImg($(this).attr('src'))); }
		  );
		},
		
		ImgPreload: function(){
		
		  $(window).bind('load', function() {
			 $('.rOver').each(function(key, elm) { $('<img>').attr('src', IMG.ImgRollover.HoverImg($(this).attr('src'))); });
		  });
		},
		
		NormalImg: function(img){
		  return img.substring(0, img.search(/(\.[a-z]+)$/)) + '_on' + img.match(/(\.[a-z]+)$/)[0];
		},
		
		HoverImg: function(img){
		  return img.replace(/_on\./, '.');
		}
	};
