/*
$(document).ready(function() {
  $('.rollover-jpg').hover(function() { $(this).attr('src', $(this).attr('src').replace(/\.jpg$/, '-ro.jpg')); },
                           function() { $(this).attr('src', $(this).attr('src').replace(/-ro\.jpg/, '.jpg')); });
});
*/
rollover_images = new Object();

$(document).ready(function() {
  $('.rollover-jpg').mouseover(function() {
  	$(this).attr('src', rollover_images[$(this).attr('src')].src.replace(/http.*\.com/, ""));
  }).mouseout(function() {
  	$(this).attr('src', $(this).attr('src').replace("-ro.jpg", ".jpg"));
  });
});
$(document).ready(function() {
	$('.rollover-jpg').each(function() {
		rollover_images[$(this).attr('src')] = new Image();
		rollover_images[$(this).attr('src')].src = $(this).attr('src').replace(".jpg", "-ro.jpg");
	});
});
