Ext.namespace('TurnerAdRotatorIndexPage');
TurnerAdRotatorIndexPage = function(config) {
    TurnerAdRotatorIndexPage.superclass.constructor.call(this, config);
}
Ext.extend(TurnerAdRotatorIndexPage, FW.Pages.BaseObj);
CURRENT_PROTO = TurnerAdRotatorIndexPage.prototype;

CURRENT_PROTO.init = function(config) {

    this.rotator = new FW.Widgets.AdRotator({
        image_id: 'img-rotate',
        hrefs: {
            'LittleA_banner.gif'      : 'LittleA.html',
            'turnerestate_banner.gif' : 'TE.html'
			
        },
        target_id: 'img-rotate-link',
        delay: 5, // in secs
        image_prefix: 'images',
        images: [
            'LittleA_banner.gif',
            'turnerestate_banner.gif'
		
        ]
    });
}

