function ouvrePanneau(){

	var H = document.getElementById("footer").style.height;
	
	var SLIDE = document.getElementById("SLIDE").value ;
	if(SLIDE == "closed"){
		t1A = new Tween(document.getElementById('footer').style,'height',Tween.regularEaseOut,125,600,0.5,'px');
		t1A.start();
		document.getElementById("SLIDE").value = "open";
		document.getElementById("btnPanneau").src="fileadmin/capm/2011/images/btnPanneauFermer.png";
	} else {
		t1A = new Tween(document.getElementById('footer').style,'height',Tween.regularEaseOut,600,65,0.5,'px');
		t1A.start();
		document.getElementById("SLIDE").value = "closed";
		document.getElementById("btnPanneau").src="fileadmin/capm/2011/images/btnPanneau.png";
	}
		


}

function ttshow(IMAGE){
	tooltip.show('<table width="100%" style="margin-top:6px;"><tr><td><img src="'+IMAGE+'" border="0" /></td></tr></table>');
}

function tthide(){
	tooltip.hide();
}

window.onload = function(){

					var options = {
					handleOversize: "drag",
					preserveAspectWhileResizing: 1	
					}
					Shadowbox.init(options);
}				

