var isIE = -1 != navigator.userAgent.indexOf('MSIE');

// define all contents and behaviors to rotated into and out of display by an instance of the FaderDivManager 
var contents = new Array();
contents[0] = '<img src="images/version2/sponsorship/ts_leaderboard.jpg" alt="Premium Sponsorship Opportunity">';
contents[1] = '<img src="images/version2/sponsorship/ts_leaderboard2.jpg" alt="Premium Sponsorship Opportunity">';

// define the configuration settings for the fader
var config = new Array();
	config['color'] = '';
	config['backgroundColor'] = '';
	var height = ((isIE)?90:90) + 'px';
	config['height'] = '90px'; //'height;
	config['width'] = '950px';
	config['position'] = 'relative';
	var top = ((isIE)?25:25) + 'px';
	config['top'] = 0; //top;
	config['left'] = 0;
	config['border'] = '';
	config['margin'] = '0 auto';
	//config['text-align'] = 'center';
var fadeMgr;

// declare the startup operations that need to be performed once the body is loaded
function initFader() {
	fadeMgr = new FaderDivManager('sponsor_area', contents, config, [[1900, 1950]], false, false, false, 'fadeMgr');
	fadeMgr.setCurrentContent(fadeMgr.getContentsArrayElement(0));
	fadeMgr.setAutoFadeRate(6000);
	var top = ((isIE)?10:8) + 'px';
	fadeMgr.configure();
	fadeMgr.setStartAutoTimeout(setTimeout('fadeMgr.startAutoFade()', fadeMgr.getAutoFadeRate()));
	document.getElementById('sponsor_area').style.borderBottom = '0';
	document.getElementById('sponsor_area').style.overflow = 'hidden';
}

// set the initialization operations to run onload
//window.onload = init;