<!--
var currentIndex = 0;
var currentIsSuper = true;

function update(url, index, isSuper) 
{
	
	currentIsSuper = isSuper;
	
	if (index < 12)
	{
		currentIndex = index;
		document['Bigs1'].src=url;
	}
	
	if (index > 11 && index < 21)
	{	
		currentIndex = index;
		document['Bigs2'].src=url;
	}
	
	if (index > 20)
	{	
		currentIndex = index;
		document['Bigs3'].src=url;
	}
	
	
	
	if (isSuper)
	{
		visibleState = "visible";
	}
		else
		{
			visibleState = "hidden";
		}
	
	return false;
}
//-->