Event.observe(window, 'load', function(){
	look();
	/*
	var slide1 = new slideShow('slideshow','cont_slideshow','item',{
		slideControl2:true,
		slideIndice:true,
		slideAutostart:true,
		slideDuree:0.5,
		slideTempo:4
	});
	*/
	//$('atouts').hide();
	var hauteur = new Array();
	$$('.engagement_atout .onglets a').each(function(e,i){ 
		var contenu = e.hash;
		contenu = contenu.substring(1);
		hauteur.push($(contenu).getHeight());
		if(!e.hasClassName('in')){
			$(contenu).hide();	
		}else{
			$('liste_contenu').setStyle({height:+hauteur[i]+'px'});	
		}
		e.observe('click', function(bt){
			e.blur();
			Event.stop(bt);	
			if(!e.hasClassName('in')){									
				e.addClassName('in');
				e.up('li').addClassName('in');
				e.up('li').siblings().each(function(sibLi){sibLi.removeClassName('in');sibLi.down('a').removeClassName('in')});
				$(contenu).show();
				$(contenu).siblings('div').each(function(sibDiv){sibDiv.hide()});
				$('liste_contenu').morph('height:'+hauteur[i]+'px', {duration:0.5});
			}
		});
	});
});

function look(){
	var doc = document.getElementById('cours');
	var doc2 = document.getElementById('temoignage');
	var doc3 = document.getElementById('engagements');
	var doc4 = document.getElementById('atouts');
	if (document.all) // ok I.E
	{
		H = doc.offsetHeight+"px";
		H2 = doc2.offsetHeight+"px";
		H3 = doc3.offsetHeight+"px";
		H4 = doc4.offsetHeight+"px";
	}
	else // ok firefox.0.9.2 , pas mozilla.1.0 ni netscape.7.02
	{
		H = document.defaultView.getComputedStyle(doc, null).height;
		H2 = document.defaultView.getComputedStyle(doc2, null).height;
		H3 = document.defaultView.getComputedStyle(doc3, null).height;
		H4 = document.defaultView.getComputedStyle(doc4, null).height;
	}
	
	if(H < H2)
		doc.style.height = H2;
	else
		doc2.style.height = H;
		
	if(H3 < H4)
		doc3.style.height = H4;
	else
		doc4.style.height = H3;
}

