﻿jQuery(function($) {
  $('form').submit(function() {
    $(this).find('input[type=text][title!=""]').each(function() {
      if ($(this).val() == $(this).attr('title')) $(this).val('');
    });
    $(this).find('textarea[title!=""]').each(function() {
      if ($(this).val() == $(this).attr('title')) $(this).val('');
    });
  });

  $('input[type=text][title!=""]').each(function() {
    if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'));
    if ($(this).val() == $(this).attr('title')) $(this).addClass('exampleText');
  }).focus(switchText).blur(switchText);

  $('textarea[title!=""]').each(function() {
    if ($.trim($(this).val()) == '') $(this).val($(this).attr('title'));
    if ($(this).val() == $(this).attr('title')) $(this).addClass('exampleText');
  }).focus(switchText).blur(switchText);

  function switchText() {
    if ($(this).val() == $(this).attr('title'))
      $(this).val('').removeClass('exampleText');
    else if ($.trim($(this).val()) == '')
      $(this).addClass('exampleText').val($(this).attr('title'));
  }
});
