$(function (){
	
	$(".Fleche").html(" + ");	
	$(".CloseWin").hide();
	$(".MoveTbl").click(function(){		
		if($(this).next(".CloseWin").is(":hidden")){			
			$(".MoveTbl").next(".CloseWin:visible").fadeOut(100);			
			$(".MoveTbl").find(".Fleche").html(" + ");	
			
			$(this).next(".CloseWin").fadeIn(500);				
			$(this).find(".Fleche").html("  &nbsp;-  ");	
		}else{						
			$(this).next(".CloseWin").fadeOut(100);	
			$(this).find(".Fleche").html(" + ");				
		}			
	});	
	/*
	$(".Fleche").html("<img src='stock/up.png' alt='' />");		
	$(".CloseWin").hide();
	
	$(".Fleche").click(function(){	
		
		$(this).html("<img src='stock/down.png' alt='' />");
		
		
		if($(this).next(".CloseWin").is(":hidden")){			
			$(".Fleche").next(".CloseWin:visible").fadeOut(100);			
			$(".Fleche").html("<img src='stock/up.png' alt='' />");	
			
			$(this).next(".CloseWin").fadeIn(500);				
			$(this).html("<img src='stock/down.png' alt='' />");	
		}else{						
			$(this).next(".CloseWin").fadeOut(100);	
			$(this).html("<img src='stock/up.png' alt='' />");				
		}			
	});	
	*/
});

