
//add styled class to avoid flickering
$("html").addClass("no_flicker");

$(document).ready(function(){

  //remove no_flicker class when the page is ready
  $("html").removeClass("no_flicker");

  //search field value toggle
  $("#s").addClass("s_blur");
  $("#s").val("Hae");
  swapValue = [];
  $("#s").each(function(i) {
    swapValue[i] = $(this).val();
    $(this).focus(function(){
      if ($(this).val() == swapValue[i]) {
        $(this).val("");
      }
      $(this).removeClass("s_blur");
    }).blur(function(){
      if ($.trim($(this).val()) == "") {
        $(this).val(swapValue[i]);
        $(this).addClass("s_blur");
      }
    });
  });

});



