$(document).ready(function()
{
  $('.search input[type="image"]').hide();

	$('#query').focus(function() {
			if($(this).val() == 'Search') $(this).val('');
	});

  $('#query').keyup(function(key)
  {
    if (this.value.length >= 3 || this.value == '')
    {
			$('#loader').show();
      $('#search-results').load(
        $(this).parents('form').attr('action'),
        { query: this.value + '*' },
        function() { $('#loader').hide(); }
      );
    }
  });
});
