// at loading of the page
$(document).ready(function() {
    
    // assign event handlers to links in the roomphotos list
    // so that instead of going to the image we capture the
    // image path and replace it in the img tag within photo div
    $("#roomphotos a").bind("click", function() {
        // grab the href
        var href = $(this).attr("href");
        
        // fade out the current photo
        $("#photo img").fadeOut("normal", function() {
            $("#photo img").attr("src", href);
            $("#photo img").fadeIn("normal");
        });
        
        return false;
    });
    
});