/* ----------------------------------------------------------
date: 03/03/2011
author: Vitalij A. Streljaev
email: info@streljaev.pp.ua
icq: 174-964-377
skype: streljaev
profile: http://www.free-lance.ru/users/s_ajax
---------------------------------------------------------- */


/*** Placeholder Script ***/

jQuery(document).ready(function(){
  $("input, textarea").focus(function(){
    if ($(this).attr("value") == $(this).attr("title"))
      $(this).attr("value", "")
  });

  $("input, textarea").blur(function(){
    if ($(this).attr("value") == "")
      $(this).attr("value", $(this).attr("title"))
  });
});
