$(document).ready(function(){
  defaultText = '';
  wasSet = false;
  $('#headerLoginField').focus(function(){
    if (!wasSet){
      defaultText = $(this).val();
      wasSet = true;
      $(this).val('');
    }
  });
  $('#headerLoginField').blur(function(){
    if ($(this).val() == ''){
      $(this).val(defaultText);
      wasSet = false;
    }
  });

  $('.flashBox').click(function(){
    $(this).fadeOut(300);
  });

  $('.qtip').qtip({
    content: {
      text: false
    },
    style: {
      name :'green',
      border: {
        'radius' : 3,
        'width' : 2
      }
    },
    position: {
      target: 'mouse',
      corner: {
        'tooltip' : 'bottomLeft'
      }
    }
  });
});  
