// JavaScript Document

$(document).ready(function() {
    $('.rotateContent script').remove();
    $('.rotateContent ul').remove();
    $('.rotateContent').children('a').remove();
    $('.rotateContent input').remove();

    $(".feature").cycle({      
        fx: 'fade',
        sync: 0,
        delay: -1000,
        pager: '#RotatorPager',
        slideExpr: '.bannerRotateImage',
        speed: 2500,
        timeout: 7500,
        cleartype: 1,
        cleartypeNoBg: true,        
        pagerAnchorBuilder: function(idx, slide) { return '<a href="#">' + (idx + 1) + '</a>'; }
    });
});

