var clients = new Array
(
	"blenz.jpg",
	//"crush.jpg",
	//"goldfish.jpg",
	//"hdsretail.jpg",
	"joefortes.jpg",
	//"lotus.jpg",
	"lumiere.jpg",
	//"mjg.jpg",
	//"quiltsetc.jpg",
	"taylorscrossing.jpg",
	"virgin.jpg"
	//"yaletownbrewing.jpg"
	
);

var iClients = 0;

var rotationElement = null;

function rotateClients(element)
{
	rotationElement = element;
	fadeInClients();
}

function fadeInClients()
{
	$("#"+rotationElement).html("<img src='images/clients/"+clients[iClients]+"'/>");
	$("#"+rotationElement).fadeIn("slow", handleFadeInClientsComplete);
}

function handleFadeInClientsComplete()
{
	setTimeout(fadeOutClients, 5000);
}

function fadeOutClients()
{
	$("#"+rotationElement).fadeOut("slow", handleFadeOutClientsComplete);
}

function handleFadeOutClientsComplete()
{
	iClients++;
	if (iClients >= clients.length) iClients = 0;
	fadeInClients();
}
