
	// fonctions au load
	$(document).ready(function(){
	
		// ajustement des blocs de la home tous a la meme hauteur
		var heightBlockMax=0;
		$(".firstLine .meaHomeCont").each(function(){ if( $(this).height() > heightBlockMax ) heightBlockMax = $(this).height(); }); // get max height
		$(".firstLine .meaHomeCont").each(function(){ $(this).css("height",heightBlockMax); }); // assign max height
		heightBlockMax=0;
		
		// ajustement des blocs de la home tous a la meme hauteur (2eme ligne)
		var heightBlockMax=0;
		$(".secondLine .meaHomeCont").each(function(){ if( $(this).height() > heightBlockMax ) heightBlockMax = $(this).height(); }); // get max height
		$(".secondLine .meaHomeCont").each(function(){ $(this).css("height",heightBlockMax); }); // assign max height
		heightBlockMax=0;
		
		// chargement du flash en home
		$("#voirDemo a").click(function(){
			
			var so = new SWFObject("/library/themes/default/fr/swf/flashHome.swf", "flashHome", "639", "238", "8", "#cccccc");
			//var so = new SWFObject("library/themes/default/fr/swf/flashHome.swf", "flashHome", "600", "238", "8", "#cccccc");
			so.addParam("wmode", "transparent");
			
			// so.write("flashContainer");
			so.write("flashContainer");

			$("#voirDemo").css("display","none");
			$("#infosVideoHome").css("display","none");
		    });
		
	});