$(window).ready(function(){
  
  var onAc = 0; //akcja na mouseout
  $("#sword").attr('autocomplete','off');
  $("#sword").keyup(function(){
    var ac = $("#sword").val();
    if(ac.length>0){
      $('#sword').css({ backgroundImage : "url(gfx/szukaj_.png)" });
      if(ac.length>2){
				$('#autocomplete').html('proszę czekać'); // Fill the suggestions box
				$('#autocomplete').show(); // Show the suggestions box
				$.ajax({
					type: "POST",
					url: "includes/ajax/autocomplete.php",
					data: "ac="+ac,
					success: function(data){
						$('#autocomplete').fadeIn(); // Show the suggestions box
						$('#autocomplete').html(data); // Fill the suggestions box
						onAc = 1;
					}
				});
      }else{
	$('#autocomplete').fadeOut(); // Hide the suggestions box
	onAc = 0;
      }
    }else{
      $('#searchWord').css({ backgroundImage : "url(gfx/szukaj.png)" });
      $('#autocomplete').fadeOut(); // Hide the suggestions box
      onAc = 0;
    }
  });
  $(window).click(function(){
    if(onAc==1)
      $('#autocomplete').fadeOut(); // Hide the suggestions box
  })
})