$(document).ready(function(){
    
    jQuery.easing.def = "easeOutCirc";
    
    $("#sidebar>ul>li>ul>li").hover(function(){
        
        $(this).stop().animate({marginLeft : "10px"},200);},
        function(){
        $(this).stop().animate({marginLeft : "0px"},200);}
        
    ); 

    $("#sidebar h2").toggle(function(){
        $(this).next().stop().hide(500);
    },function(){
        $(this).next().stop().show(500);
    });
    
     $("#comments").toggle(function(){   
        $("ul.commentlist").hide(900);
    },function(){
        $("ul.commentlist").show(900);
    });

});

