﻿    $(document).ready(function() {
        $("#gallery_med a").fancybox({ 'overlayOpacity': 0.8 }); 
        $("#gallery_med img").not(":first").hide();
        $("#gallery_th img:first").fadeTo("fast", .5);
        var $sel = $("#gallery_th img:first")
        
        $("#gallery_th a").click(function() {
        if ($("#" + this.rel).is(":hidden")) {
            if ($sel) $($sel).fadeTo("fast", 1);
                $(this).fadeTo("fast", .4);
                $sel = this;
                $("#gallery_med img").slideUp();
                $("#" + this.rel).slideDown();
            }
        });
    });