﻿$(document).ready(function () {
    $('#main-promo').jshowoff({ speed: 7000, controls: false });
    $('#flavor-list-promo li').each(function (i) {
        var offset = 38 + 4; //width of flavor and appropriate 'margin-right'
        var $this = $(this);

        $this.html('<span>' + $this.text() + '</span>').css('left', offset * i);
        var innerSpan = $this.find('span');
        var innerSpanWidth = innerSpan.width() + 2;
        var innerSpanOffet = (innerSpanWidth / 2) - 19 + 8;

        innerSpan.css({ width: innerSpanWidth, visibility: 'hidden', 'margin-left': -innerSpanOffet });
        $this.width(38);

    });
    $('#canister-promo .product-list').jcarousel({ scroll: 2 });
    $('#canister-listing .product-list').jcarousel()
});
