$(document).ready(function(){
    //1237652875123871201293-12470234019274-023-4182-4018-23490182-34018-2390
//     $("#sidebar 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");}
        
    );

});

