/**
 *  Script qui gère la partie navigation (hors menu) du site.
 *  @author ZEZUKA Clément  <clemzezuk@gmail.com>
 */
$(function(){
    
    //  Méthode appelée au clique du premier cercle (home).
    $('#go_to_realisations').click(function(){
        $.scrollTo('#rond_realisations', 800, {offset: {top:-100, left:-( ( $(window).width() - $('#container').width() ) / 2 ) }, "easing" : 'jswing' });
    });
    
    //  Méthode appelée au clique du deuxième cercle (réalisations).
    $('#go_to_services').click(function(){
        $.scrollTo('#rond_services', 800, {offset: {top:-100, left:-( ( $(window).width() - $('#container').width() ) / 2 ) }, "easing" : 'jswing' });
    });
    
    //  Méthode appelée au clique du troisième cercle (services).
    $('#go_to_contact').click(function(){
        $.scrollTo('#rond_contact', 800, {offset: {top:-100, left:-( ( $(window).width() - $('#container').width() ) / 2 ) }, "easing" : 'jswing' });
    });
    
    //  Méthode appelée au clique du dernier cercle (contact).
    $('#go_to_home').click(function(){
        $.scrollTo('#rond_home', 800, {offset: {top:-200, left:-( ( $(window).width() - $('#container').width() ) / 2 ) - 635 }, "easing" : 'jswing' });
    });
    
});
