var timeOut;

$(function() {
	$('.search-box').click(function() {
		if ($('.search-box').val().length > 0) {
			$(".suggesstions").show();
			ajaxSearch();
		}
	});

	$(".search-box").keyup(function() {
		console.log("Itt 2");
		timeOut = setTimeout(function() {
			if ($('.search-box').val().length > 0) {
				$(".suggesstions").show();
				ajaxSearch();
			}
			else {
				$(".suggesstions").hide();
			}
		}, 500);
	});

	$(".search-box").keydown(function() {
		clearTimeout(timeOut);
	});
});

function ajaxSearch() {
	console.log("Itt 1");
	$.ajax({
		url: '/search.php',
		type: 'get',
		data: {key: $('.search-box').val()},
		success: function(response) {
			$('.suggesstions').html(response);
		}
	});
}