$(document).ready(function(){
    $("a[rel='galleryimg']").colorbox();
    $("a[rel='galleryimg1']").colorbox();
    
    $("#gallerlist img").click(function () { 
         var imgtitle = $(this).attr('title');
         
         /* set the image title */
         $('#linkGalleryMain').attr('title', imgtitle);
         $('#imgLightZoom').attr('title', imgtitle);
         $('#imgTitleDetails').html(imgtitle);
         $('#imgGalleryMain').attr('title', imgtitle);
         $('#imgGalleryMain').attr('alt', imgtitle);
         
         /* set the href */
         $('#linkGalleryMain').attr('href', $(this).attr('relGalleryLight'));
         $('#imgLightZoom').attr('href', $(this).attr('relGalleryLight'));
                  
         /* set shop link */
         $('#alinkShopTarget').attr('href', "http://www.sauvagewear.com/"+$(this).attr('shoplink'));
         
         /* set the src */
         $('#imgGalleryMain').addClass('imgopacity');
         $('#imgGalleryMain').attr('src', $(this).attr('relGalleryfull')).load(function(){
            $(this).removeClass('imgopacity');
         });


    });

});

