$(document).ready(function () {
    //BrandBox functions
    var currentItem = 0;

    $('#pnlBrandBoxImages').cycle({ timeout: 4000,
        speed: 500,
        before: nextBrandBoxItem
    });

    function nextBrandBoxItem() {

        $('.brandBoxButton').removeClass('brandBoxButtonMO');
        $('.brandBoxButton')[currentItem].className = 'brandBoxButton brandBoxButtonMO';

        currentItem++;

        if (currentItem > 2) {
            currentItem = 0;
        }
    }


    $('.brandBoxButton').mouseenter(function () {
        $('#pnlBrandBoxImages').cycle('destroy');

        currentItem = $.inArray($(this)[0], $('.brandBoxButton'));
        $('#pnlBrandBoxImages').cycle({ timeout: 4000,
            speed: 500,
            startingSlide: currentItem,
            before: nextBrandBoxItem
        });

        $('#pnlBrandBoxImages').cycle('pause');
    });

    $('.brandBoxButton').mouseleave(function () {
        $('#pnlBrandBoxImages').cycle('resume');
    });
});
