$(document).ready(function(){
//expertises reservé a ultradigital
    $('#expertise div').hide();
    $('#expertise span').click(function(){
        $('#expertise').css("height","850px");
        if(typeof nom == 'undefined' || nom != $(this).attr('id') ){
            nom = $(this).attr('id');
            if(nom != ''){
                fleche = jQuery(".fleche", this);
                titre = jQuery("h2", this);

                $('#expertise div').slideUp().hide();
                $('#expertise span h2').css('color','#333333');
                $('#expertise span .fleche').attr('src','http://www.agence-ultradigital.fr/wp-content/themes/ultradigital/images/fleche.png');
                $(fleche).attr('src','http://www.agence-ultradigital.fr/wp-content/themes/ultradigital/images/fleche-act.png');
                $(titre).css('color','#6FC3C5');
                $('.'+nom).slideDown();
            }
        }
        else{
            if(nom != ''){
                
                fleche = jQuery(".fleche", this);
                titre = jQuery("h2", this);
                $('#expertise div').slideUp().hide();
                $('#expertise span h2').css('color','#333333');
                $('#expertise span .fleche').attr('src','http://www.agence-ultradigital.fr/wp-content/themes/ultradigital/images/fleche.png');
                delete nom;
                $('#expertise').animate({height: "400px"},500);
            }
        }

    });
    //Fin expertises
});
