$(document).ready(function() {		

  // front page quick search auto-complete
  $("#sq_used").autocomplete("autocomplete_response.html", { minChars:2, maxItemsToShow: 10, autoFill:false });
  $("#sq_new").autocomplete("autocomplete_response.html", { minChars:2, maxItemsToShow: 10, autoFill:false });

  $("form.search_quick button").click(function() {
    $(this).parent().parent().submit();
  });
    
  $.each($(".sq"), function() {
    if ($(this).val() != $(this).attr("title")) {
      if ($(this).val() == "") {    
        $(this).removeClass("v1_focus");
        $(this).val($(this).attr("title"));      
      }    
      else
        $(this).addClass("v1_focus");
    }    
      
    $(this).focus(function() {
      $(this).addClass("v1_focus");
      if ($(this).val() == $(this).attr("title")) {
        $(this).val("");
      }
    });
    $(this).blur(function() {    
      if ($(this).val() == "") {    
        $(this).removeClass("v1_focus");
        $(this).val($(this).attr("title"));      
      }
    });     
  }); 

 
});	
