﻿$(document).ready(function () {
    $("ul li a.my_gallery").fancybox({
        'titleShow': false,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic'
    });
});

$(function () {
    if (!offsetLeft) {
        var offsetLeft = 0;
    }
    var imageWidth = 144 + 4 + 4;

    $("#gallery_content a.right").click(function () {
        var divWidth = $("#gallery_images_wrapper").css("width");
        var maxWidth = $("#gallery_images_wrapper ul").css("width");
        if (parseFloat(offsetLeft * -1) + parseFloat(divWidth) >= parseFloat(maxWidth)) {
            return false;
        } else {
            offsetLeft -= imageWidth;
            $("#gallery_images_wrapper ul").animate({ "left": offsetLeft + "px" }, 400);
        }
        return false;
    });

    $("#gallery_content a.left").click(function () {
        if (parseFloat(offsetLeft + imageWidth, 10) >= 80) {
            return false;
        } else {
            offsetLeft += imageWidth;
            $("#gallery_images_wrapper ul").animate({ "left": offsetLeft + "px" }, 400);
        }
        return false;
    });
});
