$(document).ready(function(){
	var tab = new Array('','titre','attributs');
	
	$('table.piece').each(function(){
		var cpt = 0;
		$( 'td',this).each(function(){
			$(this).addClass(tab[cpt]);
			cpt++;
		});
	});
	
	
	$(".becocenimage div.lst-strip-top").each(function(){
		var thecar = $(this);

		if( $('.line_center li', this).length > 4 ){
			$('.line_center', this).jCarouselLite({
				btnNext: $(".line_right img",this),
				btnPrev: $(".line_left img",this),
				visible: 4
			});
		}
	});
	
	$(".becocenimage .line_center a").each(function(){
				
		$(this).attr('rel','img');
		
	});
	$(".becocenimage .line_center a").each(function(){
				
		$(this).fancybox({
			padding:6,
			margin:10,
			scrolling:'yes'
		});
	
	});
	
	
});
