
jQuery(document).ready(function(){

	// PNG sous IE6
	if(jQuery.browser.msie && jQuery.browser.version == "6.0") {
    	jQuery("#page").find('img[src*=".png"]').css("behavior", 'url("/bin/assoturf/www/js/png/pngbehavior.htc")');    
    }
	
	// placer le footer
	//SetFooter();
	setTimeout("SetFooter()", 1500);
	
	// elargir le content si aucune pub à droite
	if (jQuery.trim(jQuery("#pub_droite").html()) == "")
	{
	   var newWidth = jQuery("#content").width() + 170;
	   jQuery("#content").width(newWidth);
	}
});

function SetFooter()
{
	var pos_menu_gauche = jQuery("#menu_gauche").offset().top + jQuery("#menu_gauche").outerHeight();
	var pos_content = jQuery("#content").offset().top + jQuery("#content").outerHeight();
	var pos_pub_droite = jQuery("#pub_droite").offset().top + jQuery("#pub_droite").outerHeight();
	//alert("mg:"+pos_menu_gauche+" - pc:"+ pos_content +" - pd:"+ pos_pub_droite);
	var maxPos = Math.max(pos_menu_gauche, pos_content, pos_pub_droite);
	maxPos += 10;
	jQuery("#footer").css("top", maxPos+"px").css("visibility", "visible");
	var footer_height = jQuery("#footer").outerHeight();
	jQuery("#page").height(maxPos + footer_height);	
}
