// 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('');
    });
    
});

<!-- Google +1 -->
$(document).ready(function() {
	var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
	po.src = 'https://apis.google.com/js/plusone.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
