$(document).ready(function(){
     //Sets suggestions box and auto-complete to be off by default
     $('#suggestions').fadeOut();
     $('input#searchbox').attr("autocomplete","off");

     //Sets default value for search box, and removes it on click
	 $('input#searchbox').attr('value', 'Search for Prints');
	 $('input#searchbox').click(function(){
  		$(this).attr('value', '');
     });

     //More Info Tab on Homepage
     $('div#more-info').css('display', 'none');
     $('a.more-info').click(function(){
         if ($('div#more-info').is(":hidden"))
         {
            $('div#more-info').slideDown();
         }
         else
         {
             $('div#more-info').slideUp();
         }
         return false;
     });

});

function lookup(input_string) {
          if(input_string.length == 0) {
                 $('#suggestions').fadeOut(); // Hide the suggestions box
          } else {
              $.post("/ajax/search_prints.php", {query_string: ""+input_string+""}, function(data) { // Do an AJAX call
                if(data != ''){
                      $('#suggestions').fadeIn(); // Show the suggestions box
                      $('#suggestions').html(data); // Fill the suggestions box
                      $('#suggestions a').keynav('keynav_focusbox','keynav_box');
                }else{
                      $('#suggestions').fadeOut();
                }
              });
            }
}