    $(document).ready(function() {
        var cont_left = $("#first-container").position().left;
        $(".large").hover(function() {
            // hover in
            $(this).parent().parent().css("z-index", 1);
            $(this).animate({
               height: "155",
               width: "189",
               left: "-=6",
               top: "-=8"
            }, "fast");
        }, function() {
            // hover out
            $(this).parent().parent().css("z-index", 0);
            $(this).animate({
                height: "139",
                width: "177",
                left: "+=6",
               top: "+=8"
            }, "fast");
        });

        $(".large-button").each(function(index) {
            var left = (index * 180) + cont_left;
            $(this).css("left", left + "px");
        });
    });

