$(document).ready(function() {
    // Twitter
    $(".tweet").tweet({
        join_text: "auto",
        username: "1222north",
        count: 3,
        loading_text: "loading tweets..."
    });
    
    // Categories
    $('div.category a', '#content').each(function() {
        $(this).addClass($(this).text().toLowerCase());
    });
    
    // Comments
    $('#respond').hide();
    $('#comments .action a').click(function() {
        $('#respond').show();
    });
    $('#commentCancel').click(function() {
        $('#comment', '#commentform').val('');
        $('#respond').hide();
        return false;
    });
});