$(document).ready(function(){
  $.ajaxSetup({ cache:false });
  
  function placeholders()
  {
    if (!Modernizr.input.placeholder){
      $('input[placeholder],textarea[placeholder]').each(function(){
        if ($(this).val() == '') {
          $(this).val($(this).attr('placeholder'));
        }
        
        $(this).focus(function(){
          if ($(this).val() == $(this).attr('placeholder'))
            $(this).val('');
        });
        
        $(this).focusout(function(){
          if ($(this).val() == '')
            $(this).val($(this).attr('placeholder'));
        });
      });
    }
  }
  placeholders();
  
  function clear_placeholders()
  {
    $('input[type=text][placeholder]').each(function(){
      if ($(this).attr('placeholder') == $(this).val()) {
        $(this).val('');
      }
    });
  }
});
