﻿$(function() {
	$('.entete_anime').cycle({ fx:'fade', speed:2500,timeout:  1800});
	
	var hauteur_ib1 = $(".ib_contenant .gauche").height();
	var hauteur_ib2 = $(".ib_contenant .droit").height();
	/*alert(hauteur_ib1  + " " + hauteur_ib2);*/
	if (hauteur_ib1 >= hauteur_ib2) {
		var choix = hauteur_ib1;
	} else {
		var choix = hauteur_ib2;
	}
	$(".ib_contenant").height(choix);
	
	


});


