$(document).ready(function() {
	$('#aramabutton').focus(function() {
		$(this).val('');
		$(this).removeClass('araidle');
});
	$('#aramabutton').blur(function() {
		$(this).val('Hýzlý Arama');
		$(this).addClass('araidle');
		$('.aramasonuc').slideUp();
});
	
	$('#aramabutton').keyup(function() {
			$.ajax({
				   type: "POST",
				   url: "/gethint.php",
				   data: ({aramas: $(this).val()}),
				   beforeSend: function(xhr) {
					   xhr.setRequestHeader("Accept-Charset","UTF-8");
					   xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=UTF-8");
					   },
				   error: function (xhr){
					   $(this).val(xhr.statusText);
		           },
				   success: function(msg){
					 $('.aramasonuc').html(msg);
					 $('.aramasonuc').slideDown();
				   }
				 });
			
	});

});
