$(document).ready(function(){
    
    jQuery.easing.def = "easeOutCirc";
    
    $("#sidebar>ul>li>ul>li").hover(function(){
        
        $(this).stop().animate({marginLeft : "10px"},400);},
        function(){
        $(this).stop().animate({marginLeft : "0px"},400);}
        
    ); 

    $("#sidebar h2:not(.show)").next().hide();

    $("#sidebar h2").click(function(){
        if ($(this).next(":first").css('display')!='none'){
            $(this).next().stop().hide(500);
        }else{
            $(this).next().stop().show(500);
        }
    });
    
     $("#comments").toggle(function(){   
        $("ul.commentlist").hide(900);
    },function(){
        $("ul.commentlist").show(900);
    });
    $("#content .entry img").hover(function(){
        
        $(this).stop().animate({opacity : "1"},200);},
        function(){
        $(this).stop().animate({opacity : "0.9"},200);}
        
    );
});
