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