$(document).ready(function() {
	
	// appel pour le plugin LightBox
	$('ul.galerie a').lightBox();
	$('#contenus a[type="image/jpeg"]').lightBox();
	
	if( $("#massat").height() > $("#musique").height() )
		$("#musique").height( $("#massat").height() );
	else
		$("#massat").height( $("#musique").height() );
});

$(window).load(function() 
	{
		var h1 = $("#massat > div.clear").offset().top;
		var h2 = $("#musique > div.clear").offset().top;
		var h3 = $("#montagne > div.clear").offset().top;	
					
		var taille = Math.max (h1,h2,h3) - 265;	
		$("#contenus").height(taille);
	}
);
	

