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

 $("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);
    });
    $("#content .entry img").hover(function(){
        
        $(this).stop().animate({opacity : "1"},200);},
        function(){
        $(this).stop().animate({opacity : "0.9"},200);}
        
    );
});

