var ouverture_menu_rechercher;
var tips_options = {offsets: {'x': 0,'y': 5}};

window.addEvent('domready', function() {

    ouverture_menu_rechercher = 0;

    boite_login = new MultiBox('mb', {
        descClassName: 'multiBoxDesc',
        useOverlay: true
    });
   
    var boite_outil_rechercher = $('zone_rechercher');
    var fx_boite_outil_rechercher= boite_outil_rechercher.effects({
        wait: false,
        duration: 300,
        transition: Fx.Transitions.Quart.easeOut
    });
   
    $('bouton_zone_rechercher').addEvent('click', function(){

        document.getElementById('zone_rechercher_formulaire').style.display = "block";
        document.getElementById('boite_outils_rechercher_titre').style.display = "none";
        fx_boite_outil_rechercher.start({
            'width': 228,
            'height': 50
        });

    });
   
    /* info bulle */
    new Tips($$('.Tips'), tips_options);
});



/* Galeries */
var countTD = 0;
var fx_choix_galerie;
var bg = new Array("transparent", "transparent", "transparent", "transparent", "transparent", "transparent", "transparent", "transparent", "transparent", "transparent", "transparent");

function charge_galerie(url, div){
    $(div).setHTML('Chargement');
    new Ajax(url, {
        update: $(div),
        evalScripts: true,
        method: 'get'
    }).request();
}

function choix_galerie(num_galerie){
    fx_choix_galerie = new Fx.Styles($('choix_galerie_'+num_galerie), {
        duration:500,
        wait:false
    });
    fx_choix_galerie.start({
        'opacity': 0.3
    });
}

function supprime_choix_galerie(){
   $$('#list_galerie img').setStyles({
                    'opacity': 1
                });
}


