// Div rotator show animation
// (C) 2005 Ian Burman - Agora International 
// Free for all users, but leave in this  header

// cycles through displaying & hiding a number of divs
var NumDivs = 1


// *****************************************************
var dd=0
var tt=0

function timedDivShow()
{
dd=dd+1

// Hide all divs first time round
if (dd==1) {

   var j=1
   for (j=1;j<=NumDivs;j++) 	{

	    document.getElementById('Product'+j).style.display = 'none'
	
   }
}

//hide previous Div
if (dd >1 ) {
xx=dd-1
document.getElementById('Product'+xx).style.display = 'none'
}

//Expand next Div
document.getElementById('Product'+dd).style.display = 'block'


if (dd==NumDivs ) {
	dd=0
}

tt=setTimeout("timedDivShow()",5000)
}


