//$(function() {
jQuery(document).ready(function($){

    $("#thumbnails a.image-link").click(function(){
        change_image( $("#" + this.rel) );
        return false;
    });

    $('a[rel*=facebox]').facebox()
    $("a.facebox").facebox();

});

function change_image(img)
{
    $("#section-banner").hide();
    $("#large-image").removeClass('hidden');
    $("#large-image img").attr('src', img.attr('src') );
    $("#large-image img").attr('alt', img.attr('alt') );
    $("#large-image img").attr('title', img.attr('title') );
    $("#large-caption").html(img.attr('title'));
}