$(document).ready(function() {
	$("#search_input").keyup(function( event ) {
		var srch_input = $(this).val();
		if(srch_input != '') {
			$.ajax
			({
				url: 'suggestions/suggestions.php',
				type: "post",
				data: 'word=' + srch_input,
				success: function(data) {
					$("#suggestions").html(data);
					$("#suggestions").fadeIn(400);
				},
				error: function() {
				}
			});
		}
		else {
			$("#suggestions").fadeOut(400);
		}
		
	})
	
	$(".sugg_phrase").live('click', function() {
		$srch_pr = ($(this).html()).replace(/<.*?>/gi, "");
		$("#search_input").val($srch_pr);
	})
	
	$("div").not('#suggestions').mousedown(function() {
		$("#suggestions").fadeOut(400);
	})
})
