/* This is my CoverFlow callback function. This is called when a cover is clicked on... */
function ccc (c){}


// Instantiate the CoverFlow by pointing it at a DIV that contains IMGs...
var cf;

// The CoverFlow Update method does not call itself. It's up to you to schedule this...
function update ()
{
	if( !cf ){ cf = new CoverFlow(encontraW("CoverFlow1"), 50, 50, 300, "#fff", ccc); }
	cf.Update();
	setTimeout(function(){update();}, 20);
}

