// splsah
jQuery(function($) {
     $(window).load(function (){
        jQuery.preLoadImages(
            "img/splash_w_1.png",
            "img/splash_b_1.png"
        );
    });
    $("#splash_b img, #splash_w img").hover(
    function(e){
        var src = $(this).attr("src");
        $(this).attr("src", src.replace("_0.png", "_1.png") );
    },
    function(e){
        var src = $(this).attr("src");
        $(this).attr("src", src.replace("_1.png", "_0.png") );
    });
    
    
    
});
