var rw;
var plan;

function startReseau (id, img, w) {
	MM_swapImage(id,'',img,1);
	$("#reseau2").stop().queue(function(){
		$(this).animate({width: w}, 500);
		$(this).dequeue();
	});
}


function showYes(img, bigimg) {
	$(".push").stop();
	$(img).stop().queue(function(){
		$(this).animate({width: "80px", height: "100px" }, 100);
		$(this).parents(".yescouv").children(".pushh").animate( {height: "0px" }, 100);
		$(".push").animate( {width: "0px" }, 100);
		document.getElementById("bigyes").src="images/newsletter/"+bigimg;
		$(this).dequeue();
	});	
}
function hideYes(img) {
	$(".push").stop();
	$(img).stop().queue(function(){
		$(this).animate({width: "60px", height: "75px" }, 100);
		$(this).parents(".yescouv").children(".pushh").animate( {height: "12px" }, 100);
		$(".push").animate( {width: "10px" }, 100);
		$(this).dequeue();
	});	
}

