// JavaScript Document
$(document).ready(function(){
   $(function() {
  	$(".introduction .shoppingBreak img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-roll."));
  	}, function() {
    $(this).attr("src", $(this).attr("src").split("-roll.").join("."));
  	});
   });
   $(function() {
  	$(".mainContent .additionalInfo .shoppingBreak img").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-roll."));
  	}, function() {
    $(this).attr("src", $(this).attr("src").split("-roll.").join("."));
  	});
   });
});

