$(document).ready(function(){	
    $('#btn-reseau').mousedown(function(){
        if( $('#reseau').css('right') == '-135px' ){
            $('#reseau').animate({
                right: '0'
            }, 250);
            $(this).css('background-position', '-8px 50%');
            
        }else{
            $('#reseau').animate({
                right: '-135'
            }, 250);
            $(this).css('background-position', '0px 50%');
        }
    });
    $("#geolocalisation").fancybox({
        'width' : '75%',
        'height' : '75%', 
    });
});
