    var slideImages = new Array("images/AngelNight_124.jpg", "images/PutWeight_124.jpg", "images/Phoenix_124.jpg", "images/ALittleBitofMagic_124.jpg", "images/SweetSurround_124.jpg");
    var thisImg = -1;
    var imgCt = slideImages.length;
    // debugWin = window.open("", "debugWin","height=200, width=100, resize=yes, left=0, top=0");
    
    function rotate(){
	   // debugWin.document.writeln(thisImg, "     ", imgCt);
	   // debugWin.document.close();
    	if (document.images){
	      thisImg++;
	   		if (thisImg >= imgCt){
     		  thisImg = 0;
		}
		document.slideBanner.src=slideImages[thisImg];
		setTimeout("rotate()", 3 * 1000);
		}
}	