$(document).ready(function()
{
	$("#comment_name2").click(function() {
        if ($("#comment_name2").val() == "Name")
		{
			$("#comment_name2").val("");
		}
    });
	$("#comment_name2").blur(function() {
        var box_length;
        box_length = $("#comment_name2").val().length;
        if (box_length < 1)
            $("#comment_name2").val("Name");
    });
	$("#comment_name2").focus(function() {
        if ($("#comment_name2").val() == "Name")
		{
			$("#comment_name2").val("");
		}
    });
	$("#comment_email2").click(function() {
        if ($("#comment_email2").val() == "Email")
		{
			$("#comment_email2").val("");
		}
    });
	$("#comment_email2").blur(function() {
        var box_length;
        box_length = $("#comment_email2").val().length;
        if (box_length < 1)
            $("#comment_email2").val("Email");
    });
	$("#comment_email2").focus(function() {
        if ($("#comment_email2").val() == "Email")
		{
			$("#comment_email2").val("");
		}
    });
	$("#comment_msg2").click(function() {
        if ($("#comment_msg2").val() == "Type a short message here")
		{
			$("#comment_msg2").val("");
		}
    });
	$("#comment_msg2").blur(function() {
        var box_length;
        box_length = $("#comment_msg2").val().length;
        if (box_length < 1)
            $("#comment_msg2").val("Type a short message here");
    });
	$("#comment_msg2").focus(function() {
        if ($("#comment_msg2").val() == "Type a short message here")
		{
			$("#comment_msg2").val("");
		}
    });
});