/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){
    $('#menu a').click(function(){
        var href = $(this).attr('href');
        $('li.actif').removeClass('actif');
        $(this).parent('li').addClass('actif');
        $('.contenu:visible').fadeOut('fast',function(){
            $(href).fadeIn();
        });
        return false;
    });
});
