window.onload = function() {
    appear('contentContainer');
};
var showingComments;

function appear(control) {
    new Effect.Appear(control, { duration: 1.25 });
}

function fade(control) {
    new Effect.Fade(control, { duration: 1.25 });
}

function showComments() {
    new Effect.toggle('contentContainer', 'slide');
    new Effect.toggle('commentContainer', 'slide');
    return false;
}
