$(document).ready(function() {
  $("#CommentText").click(function() {
    if ($(this).val() == 'Write Comment...') {
      $(this).val('');
    }
  }).blur(function() {
    if ($(this).val() == '') {
      $(this).val('Write Comment...');
    }
  }); 
});