window.addEvent('domready',function(){
    if($chk($('bandeau_gauche'))){
        var hauteur_content = $('fond_info').getSize().y;
    }

    if($chk($('bandeau_gauche'))){
        $('bandeau_gauche').setStyle('height',hauteur_content+'px');
    }
});
function toggle_table(type, idbloc){
    if($chk($('bouton_'+type+'_'+idbloc+''))){  
        if($chk($('table_'+type+'_'+idbloc+''))){
            $('bouton_'+type+'_'+idbloc+'').addEvent('click',function(){
                $('bandeau_gauche').setStyle('height','0px');
                $$('.display').removeClass('display');
                $('table_'+type+'_'+idbloc+'').toggleClass('display');

                if($chk($('bandeau_gauche'))){
                    var hauteur_content = $('fond_info').getSize().y;
                }

                if($chk($('bandeau_gauche'))){
                    $('bandeau_gauche').setStyle('height',hauteur_content+'px');
                }

            });
        }   
    }
}
