function InitToggle(){                 
    
    $("#cmd_show_example").bind("click", function(){
    
        $("#example_area").animate({
            height: 'toggle', opacity: 'toggle'
        }, "slow");
        
        if ($("a#cmd_show_example").text() == "Show example")
            $("a#cmd_show_example").text("Hide example");
        else
            $("a#cmd_show_example").text("Show example");
        
        return false;                
    });

    $("#cmdShowCommentForm").bind("click", function(){
    
        if ($("a#cmdShowCommentForm").text() == "Add a comment")
            $("a#cmdShowCommentForm").text("Hide comment form");
        else
            $("a#cmdShowCommentForm").text("Add a comment");
    
        $("#AddComment").animate({
            height: 'toggle', opacity: 'toggle'
        }, "slow");

        return false;                
    });

    $("#btnCancel").bind("click", function(){
    
        $("#AddComment").animate({
            height: 'toggle', opacity: 'toggle'
        }, "slow");
        
        $("#cmdShowCommentForm").show();
        
        return false;                
    });
}
jQuery.event.add( window, "load", InitToggle);