var currentFiche;

function changeCover()
{
	if($('.fiche').length>1)
	{
		currentFiche.fadeOut('slow',function(){$('.fiche').eq($('#coverflow')[0].getCurrentId()).fadeIn('slow'); currentFiche = $('.fiche').eq($('#coverflow')[0].getCurrentId());})
	}
	else
	{
		$.post('/ajax/getUrl.php',{'id':$('#coverflow')[0].getCurrentId()},function(data)
		{
			$('.fiche').fadeOut('slow',function(){$('.fiche').html(data);$('.fiche').fadeIn('slow');})
			
		});
	}
}

$(document).ready(function(){
	if($('.fiche').length>0)
	{
		$('.fiche').hide();
		currentFiche = $('.fiche').eq(0);
		currentFiche.fadeIn();
	}
	
	$(".scrollable").scrollable({circular: true}).autoscroll({ autoplay: true });

});


