$(document).ready(function(){
    $('a.flash').flash(
        { height: 300, width: 400 },
        { version: 8 },
        function(htmlOptions) {
            $this = $(this);
            htmlOptions.src = $this.attr('href');
            $this.empty().before($.fn.flash.transform(htmlOptions));
        }
    );
    $('#promo-banner').jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        speed: 500,
        auto: 6000,
        circular: true,
        visible: 1,
        scroll: 1,
        btnGo: ["#p-nav .sl1", "#p-nav .sl2"],
        afterEnd: function (e) {
            var active = e.find('img').attr('id');
            $('#p-nav a').removeClass('active')
                .parent().find('.' + active).addClass('active');
        }
    });
  });
