$(function() {
	
	var a = [
		
		[[15,163,12], [82,179,1], [23,184,-10], [32,172,2]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,150], [32,194,154], [17,230,116], [81,183,120]],	// jury 2 ronds 1-4 [width,top,left] 
		[[15,163,67], [62,179,81], [23,184,65], [32,172,77]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,230], [32,194,234], [17,230,196], [61,183,190]],	// jury 2 ronds 1-4 [width,top,left] 
		[[15,163,222], [62,179,226], [23,184,210], [32,172,212]],	// jury 3 ronds 1-4 [width,top,left] 
		[[15,163,402], [62,179,386], [23,184,380], [32,172,392]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,310], [32,194,314], [17,230,276], [61,183,295]],	// jury 2 ronds 1-4 [width,top,left] 
		[[15,163,512], [52,179,490], [23,184,490], [32,172,502]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,400], [32,194,404], [17,230,356], [46,183,420]],	// jury 2 ronds 1-4 [width,top,left] 
		[[15,163,602], [72,179,596], [23,184,590], [32,172,592]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,550], [32,194,554], [17,230,516], [61,183,530]],	// jury 2 ronds 1-4 [width,top,left] 
		[[26,183,770], [32,194,774], [17,230,736], [68,183,730]],	// jury 2 ronds 1-4 [width,top,left] 
		[[15,163,672], [52,179,656], [23,184,640], [32,172,652]],	// jury 3 ronds 1-4 [width,top,left] 
		[[26,183,900], [32,194,904], [17,230,856], [66,183,853]],	// jury 2 ronds 1-4 [width,top,left] 
		
		[[15,163,800], [62,179,794], [23,184,756], [32,172,783]],	// jury 3 ronds 1-4 [width,top,left] 
		[[18,158,8], [28,145,13], [13,149,20], [9,145,5]]
	]
	
	var myDuration = 250;
	var myEasing = "easeOutCubic";
	

	$('.round-wrap').mouseenter(function(){	
		$('.round-wrap-text').css("opacity","0");

		var index = $(".round-wrap").index(this);
		if ($(this).hasClass("on") == false) {
			
			//A faire si une rubrique est déjà sur ON (toujours sauf la première fois)
			if ($('#menu-header .on').length) {
				for (i=0; i<4; i++){ 
					$(".round"+ i, $('#menu-header .on')).animate({width: a[15][i][0] + "px", top:a[15][i][1] + "px", left:a[15][i][2] + "px"}, {queue:false, duration:myDuration, easing:myEasing});
				}
				$('#menu-header .on').removeClass("on").find("span").animate({opacity:"0"},{queue:false, duration:500, easing:myEasing});
			}
			
			$(this).addClass("on");
			// Ronds Header
			for (i=0; i<4; i++){ 
				$("#round"+ i).animate({width: a[index][i][0] + "px", top:a[index][i][1] + "px", left:a[index][i][2] + "px"}, {queue:false, duration:myDuration, easing:myEasing});
			}
			

			$("#"+ $(this).attr('id')  +"-text").css("opacity","1");
			$('.round-wrap img').css('display','none');
		} 
	});

});
