var delay = 10000; 
var divNo = 0;
var rotatorSuspend = "no";
var fadeOut = null;
var timer = null;
 
var divArray = new Array() 
divArray[0] = 	'<img class="sidebar" src="images/xmas-sale.jpg" alt="" width="143" height="93" title="Scanteak Christmas Sale" />'+
				'<h4 class="sidebar">Scanteak New Year Sale</h4>' +
				'Widest teak selection of up to 60% savings now.<br /><br />' +
				'<div align="right"><a href="promo.php" class="sidebar">Find Out More &gt;</a>&nbsp;</div>' +
				'<hr class="sidebar" />'; 
divArray[1] = 	'<img class="sidebar" src="images/environment.jpg" alt="" width="143" height="93" title="Home to the Environment" />'+
				'<h4 class="sidebar">Home To The Environment</h4>' +
				'Scanteaks contemporary furniture collection.<br /><br />' +
				'<div align="right"><a href="products.php?col=5" class="sidebar">View Collection &gt;</a>&nbsp;</div>' +
				'<hr class="sidebar" />'; 
divArray[2] = 	'<img class="sidebar" src="images/son.jpg" alt="" width="143" height="93" title="Father and Son TV Commercial" />'+
				'<h4 class="sidebar">Father &amp; Son TV Commercial</h4>' +
				'Voted Top 10 Viewers Choice by Mediacorp, Singapore<br /><br />' +
				'<div align="right"><a href="tvc.php" class="sidebar">Watch Commercial &gt;</a>&nbsp;</div>' +
				'<hr class="sidebar" />'; 
				

function swapDiv()  { 
	clearTimeout(timer); 
	
	if ( rotatorSuspend == "no" ) {
		divNo++; 
		if (divNo == divArray.length) { 
			divNo = 0; 
		} 
	
		if (document.getElementById('rotatorDiv') != null && typeof fadeOut == "object")  {
			fadeOut.start();
		}
	
	}
	setTimeout("swapDiv()", delay); 
}

function loadRotator() {
	//timer = setTimeout('swapDiv()', delay); 
}

function rotatorStop() {
	rotatorSuspend = "yes";
}

function rotatorStart() {
	rotatorSuspend = "no";
}
