﻿
$(document).ready(function() {

    $('#gallery img:first').css('border', '0');
    $('#gallery img:last').css('marginRight', '0');
    $('#gallery img').click(function() {
        var galleryObj = document.getElementById('gallery');
        var add = ($(galleryObj).width() - $(this).width()) / 2;
        var pos = $(this).position();
        var toScroll = (pos.left - add) + galleryObj.scrollLeft;
        if (toScroll < 0) { toScroll = 0; }
        $("#gallery img.hasOriginal").stop();
        $('#gallery').stop().scrollTo(toScroll, 1200, { easing: 'easeOutCirc' });
    });



    $("#gallery img.hasOriginal")
            .mouseover(function() {
                $(this).stop().animate({ 'opacity': 0 }); // fade out
            })
            .mouseout(function() {
                $(this).stop().animate({ 'opacity': 1 }); // fade out
            }
        );

    $("#gallery td.space:last").remove();


});
