function arrondir() {
	$("#menu").corner("10px");
	$("#entete").corner("10px");
	$("#pied").corner("10px");
	$("h1").corner("10px");
}

function toggle (obj) {
	if ($(obj+":visible").length != 0)
		$(obj).slideUp("normal");
        else
		$(obj).slideDown("normal");
}

function fixepositionpiedie () {
	if (navigator.userAgent.match(/MSIE/)) {
		piedheight = $("#pied").css ("height").replace(/[^0-9]/g, "");
		centrepaddingbottom = $("#centre").css ("padding-bottom").replace(/[^0-9]/g, "") - piedheight;
		
		$("#pied").css ("position", "relative");
		$("#pied").css ("left", "0px");
		$("#centre").css ("padding-bottom", centrepaddingbottom + "px");
	}
}

$(document).ready (function() {
	$("#menu ul ul").hide();
	$("#menu ul ul.on").show();
	arrondir();
	fixepositionpiedie ();
});
