$(document).ready(function () {
    $('.cycle').before('<ul class="paging">').cycle({
        fx: 'fade',
        pause: 1,
        pager: '.paging',
        pagerAnchorBuilder: function (idx, slide) {
            var tab = '<li id="slide' + (idx + 1) + '"><img src="' + $(slide).find('img:last').attr('src') + '" /></li>';
            $(slide).find('img:last').remove();
            return tab;
        }
    });
    if ($('.collateral .box').length) {
        $('.collateral .box').click(function () {
            if ($(this).find('a').length) {
                window.location = $(this).find('a').attr('href');
            }
        });
    }
    if ($('.collateral .rotate li').length) {
        $('.collateral .rotate ul').before('<div class="pager">').cycle({
            fx: 'fade',
            pause: 1,
            pager: '.pager'
        });
    }
});
