// JavaScript Document
jQuery(function() {
  var search = 0;
  
  jQuery("#footer #searchsubmit").attr("value", " ");
  
  // if search set background pos down
  if(jQuery("#footer #s").attr("value").length > 0) {
    jQuery("#footer #s").parent().parent().css("backgroundPosition", "0 -29px");
    search++;
  }
  
  jQuery("#footer-widget-area #searchform #s").focus(function() {
    if(search == 0) {
      jQuery(this).parent().parent().css("backgroundPosition", "0 -29px");
      search++;
    }
  });
  
});

