var heightBase;
$('document').ready(function(){
	$('.areaLand').cluetip({splitTitle: '',width:'auto'});
	heightBase = $('#leftLeftCol').height()-15;
	if ($('#rightCol').height()>heightBase){
		heightBase = $('#rightCol').height();
	}if ($('#center').height()>heightBase){
		heightBase=$('#center').height();
	}
	
	tailleColonne();
	mainMenu();
	swfImplements();
	
	$('.charte h2').click(function(){openUnder(this);});
	$('.boxFaq h2').click(function(){openUnder(this);});
	$('.charteL h2').click(function(){openUnder(this);});
	$('.boxFaqL h2').click(function(){openUnder(this);});
});

function openUnder(obj){
		$(obj).next('.itsContent').toggle(100,function(){tailleColonne();});
	}

function mainMenu(){

	$('ul#sousMenu').css({display: "none"});
	$('#menu > li >a.selected').parent('li').find('ul#sousMenu').show();
}

function swfImplements(){
var file = $('#flash').attr("rel");

var flashvars ={};

 var params = {};
 var attributes = {};

 swfobject.embedSWF(file, "flash", "468", "60", "9.0.0", "../files/flash/expressInstall.swf", flashvars, params, attributes);

 
 }
 
 function tailleColonne(){
 
	var height = $('#leftLeftCol').height()-15;
	
	if ($('#rightCol').height()>height){
	height = $('#rightCol').height();
	}
	
	if ($('#center').height()<height){
		if ($('#center').height()<heightBase){
			$('#rightCol').height(heightBase);
			$('#leftLeftCol').height(heightBase);
			$('#center').height(heightBase);
		}else {
			$('#rightCol').height($('#center').height());
			$('#leftLeftCol').height($('#center').height());		
		}
		
	}else {
		height = $('#center').height();
		$('#rightCol').height(height);
		$('#leftLeftCol').height(height);
		
	}
 
 }
