/* nécessite jquery */

var dir_p = "squelettes/img/";

$(function() {
	if ($.browser.msie && $.browser.version < 7) special_ie6();
	var img = "<img src='squelettes/img/decor.gif' width='23' height='13' alt='' />";
	var titre = $(".cartouche h1");
	titre.html(img + titre.html() + img).css("padding","0");
	menuderoulant();
	btnhautbaspage();
});

$(window).resize(function() {
	if ($.browser.msie && $.browser.version < 7) special_ie6();
	btnhautbaspage();
});

function special_ie6() {
	if ($("#contenu").height() < 400) $("#conteneur").height(400);
}

function menuderoulant() {
	$(".nav").each(function() {
		ddsmoothmenu.init({
			mainmenuid: $(this).attr("id"),
			orientation: 'v',
			classname: 'nav',
			contentsource: 'markup'
		});
	});
}

function btnhautbaspage() {
	var btn = $("#hautpage");
	if (btn.size() > 0) {
		var etat = ($("#baspage").offset().top + 15 > $(window).height()) ? "visible" : "hidden";
		btn.css({"visibility":etat});
		$("#baspage").css({"visibility":etat});
	}
}

