// JavaScript Document

$(document).ready(function() {
    
    $("#the_comment").focus(function() {
        if ($(this).val() == 'Comment') {
            $(this).val('');
        }
    });
    
    $("#the_comment").blur(function() {
        if ($(this).val() == '') {
            $(this).val('Comment');
        }
    });
    
    $("#commentform").submit(function() {
        if ($("#url").val() == 'Website')
            $("#url").val('');
    });
    
});

