$(document).ready(function() {
/* The jquery code for the image gallery*/

    // On mouseover, display the appropriate image with a tab effect
    $('#thumbs img').mouseover(function() {
        $('#thumbs .thumbs_selected').removeClass('thumbs_selected');
        $(this).addClass('thumbs_selected');
        var rootname = $(this).attr('src').slice(0, -5);
        $('#photo_holder').attr({src:rootname+'.jpg'});
        $('.thickbox').attr({href:rootname+'_lrg.jpg'});
    }).each(function() {
        jQuery("<img>").attr("src", $(this).attr('src').slice(0, -5)+'.jpg');
    });
});
