
jQuery(document).ready(function($){




$('#etudes, #statistique, #web').hover(
    function(){
        $(this).css("background-image","url(img/sas/home/body/images/bloc-violet.jpg)");
        $(this).children('.image, .title').hide();
        $(this).children('.info').show();
        $(this).children('a.consulter').children('img').attr('src','img/sas/home/body/images/bt-consulter-h.png')


    }
    ,function(){
        $(this).css("background-image","url(img/sas/home/body/images/bloc-orange.jpg)");
        $(this).children('.image, .title').show();
        $(this).children('.info').hide();
        $(this).children('a.consulter').children('img').attr('src','img/sas/home/body/images/bt-consulter.png')

    });




})
;


