$(document).ready(function() { 

$('form input.t, form textarea.t').focus(function(){
  if (!$(this).hasClass("changed_by_user"))
    {
      $(this).addClass("changed_by_user");
      $iValue=$(this).val();
      $(this).val("");
    }
  }
  ).blur(function()
  {
    if ($(this).val()=="")
    {
      $(this).val($iValue);
      $(this).removeClass("changed_by_user");
    }
  });
 
 
 

 
 
$('.backlink').click(function(){
  history.back();
  return false; 
});
 
 
 
 
})   