$(document).ready(function () {
	$('#search_box').keyup(function () {
		var s = $(this).val();
		
		if (s.length >= 3) {
			$('#suggestions div').load('/dynamic/suggestions.php', {'s' : s});
		} else {
			$('#suggestions div').html('');
		}
		
	}).focusin(function () {
		$('#suggestions').css('display', 'block');
	}).focusout(function () {
		$('#suggestions').delay(100).fadeOut();
	});
});
