$(document).ready(function() {
	
	/*$('.cliquable').each(function(){
		var link = $(this).find("a").attr("href");
		
		if(typeof(link) == 'undefined'){
			$(this).removeClass("cliquable");
		}
		else{
			$(this).click(function(){
				window.location = link;
				return false;
			});
		}
	});*/
	
	$('.cliquable').click(function(){
		window.location=$(this).find("a").attr("href");	
		return false;
	});
	
	//Diaporama Joueurs
	$('ul#joueurs').innerfade({
					speed: 'slow',
					timeout: 6000,
					type: 'random'
					//containerheight: '220px'
	});
	
	//Diaporama Partenaires
	$('ul#partenaires').innerfade({
					speed: 'slow',
					timeout: 3000,
					type: 'sequence'
					//containerheight: '220px'
	}); 
});
