﻿// JScript File
$(function() { 
    $(".roll").hover(
        function() { 
            $(this).attr("src", $(this).attr("src").split(".").join("_roll.")); 
        },
        function() { $(this).attr("src", $(this).attr("src").split("_roll.").join("."));}
    )
    $(".roll").each(function() { $.preloadImages($(this).attr("src").split(".").join("_roll.")) })
});

 
 
jQuery.preloadImages = function() {
		jQuery("<img>").attr("src", arguments[0]);
}
