

banners = new Array();

	
	banners[0] = '<a href="http://sports.sho.com/fight-camp-360-inside-the-sswbc.html" target="_new"><img src="http://www.fightnews.com/showtime_360fc.gif" border="0"></a>';
	
	banners[1] = '<a href="http://sports.sho.com/browse/events.html?sport=boxing" target="_new"><img src="http://www.fightnews.com/showtime_360dg.gif" border="0"></a>';

var ban_index = -1;

function random_banner(){
  var i=0;

	if (ban_index == -1) {
	  today = new Date();
	  i=today.getSeconds();
		var tx = "" + i;
		ix = tx.substring(0,1);
	  n=banners.length;
	
		if (ix<0) ix=0;
		if (ix>n-1) ix=n-1;
		ban_index = ix;
	}
	else {
		ban_index++;
		if (ban_index >= n) ban_index = 0;
	}
	
  return banners[ban_index];
}
