jQuery(document).ready(function(){
    $("div#entrance img").hover(function() {

        var rel = $(this).attr('rel');
        $(this).attr('rel', $(this).attr('src'));
        $(this).attr("src", rel);

    }, function() {
        var rel = $(this).attr('rel');
        $(this).attr('rel', $(this).attr('src'));
        $(this).attr("src", rel);
    });
});
