y	=	0;
u	=	1;
TDs	=	new Array();
$(document).ready(function() {
	$('#slide_poker td').each(function() {
		if ($(this).attr('class') != 'nodeco') {
			TDs[y] = $(this).html();
			y++;
		}
	});
});
function photos(etat) {	
	p		=	1;
	debut	=	u * 6;
	fin		=	debut + 6;
	if (!etat) {
		debut -= 12;
		fin	  -= 12;
		u--;
	}
	for(i = debut; i <= fin; i++) {
		$('.epl'+p+'').fadeTo("normal", 0.5);
		$('.epl'+p).html(TDs[i]);
		$('.epl'+p+'').fadeTo("normal", 1);
		p++;
	}
	if (etat)	u++;
}