jQuery(function($){
	
	$('.tabs').each(function(){
		var current = null;
		current = $(this).find('a:first').attr('href');
		$(this).find('a[href="'+current+'"]').addClass('bouton_a');
		$(this).find('a[href="'+current+'"]').removeClass('bouton_b');
		$(current).siblings().hide();
		
		$(this).find('a').click(function(){
			var link = $(this).attr('href');
		  if(link == current){
		  		return false;
		  }else{
		  	$(this).siblings().removeClass('bouton_a');
		  	$(this).siblings().addClass('bouton_b');
		  	$(this).addClass('bouton_a');
		  	$(this).removeClass('bouton_b');
		  	$(link).show().siblings().hide();
		  	current = link;
		  }
		});
	});
	
});
