$(document).ready(function(){
   
    $("#sidebar li>a ").hover(function(){
        
        $(this).stop().animate({marginLeft : "10px"},200,"swing");},
        function(){
        $(this).stop().animate({marginLeft : "0px"},200,"swing");}
        
    );
    
    $(".navigation>.alignleft a,.single_alignleft a").hover(function(){
        $(this).stop().animate({marginLeft : "10px"},200,"swing");},
        function(){
        $(this).stop().animate({marginLeft : "0px"},200,"swing");}
        
    );
    
    
    $(".navigation>.alignright a,.single_alignright a").hover(function(){
        $(this).stop().animate({marginRight : "10px"},200,"swing");},
        function(){
        $(this).stop().animate({marginRight : "0px"},200,"swing");}
        
    );
    


});

