var current;
var pause;
var maxitems;
var item = new Array();
current=-1;
maxitems = 7;
pause = 'false';
item[0] ='<a href="hits.html"><img src="clientquotes/coolit.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[1] ='<a href="hits.html"><img src="clientquotes/delphi.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[2] ='<a href="hits.html"><img src="clientquotes/discmakers.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[3] ='<a href="hits.html"><img src="clientquotes/pianowizard.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[4] ='<a href="hits.html"><img src="clientquotes/stanton.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[5] ='<a href="hits.html"><img src="clientquotes/swann.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[6] ='<a href="hits.html"><img src="clientquotes/ultrasone.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';
item[7] ='<a href="hits.html"><img src="clientquotes/xtrememac.jpg" alt="Max Borges Agency" border="0" hspace="0" WIDTH="760" HEIGHT="178"></a>';

function changeitem()
{
	
	if(pause == 'false')
	{
		
		if(current == maxitems || current < 0)
			current = 0;
		else
			current++;
			
	   document.getElementById('divmainoffer').innerHTML= item[current];
	}
	setTimeout("changeitem()", 6000);	
}

function forwardclick()
{
	current = current + 1;
	if(current > maxitems)
		current=0;		
	document.getElementById('divmainoffer').innerHTML= item[current];
}

function reverseclick()
{
	current = current -1 ;
	if(current < 0)
		current = maxitems;
	document.getElementById('divmainoffer').innerHTML= item[current];
}

function pauserotation()
{
	if(pause == 'false')
	{
		document.getElementById('btnpause').src = '/images/RotationImages/pause2.gif';
		pause = 'true';
	}
	else
	{
		document.getElementById('btnpause').src = '/images/RotationImages/pause.gif';
		pause = 'false';
	}
}



