
	$(function() {

		$("#suggestions").css({ 'box-shadow' : '#888 5px 10px 10px', 
								'-webkit-box-shadow' : '#888 5px 10px 10px', 
								'-moz-box-shadow' : '#888 5px 10px 10px'});
	
		// Fade out the suggestions box when not active
		$('#inputString')
			
			.blur(function(e){
		 		$('#suggestions').fadeOut('fast');
		 	})
		
			.keyup(function(e) {
				
				var inputString = $(this).val();
				
				if ( inputString.length == 0 ) {
					$('#suggestions').fadeOut('fast');
				} else {
					$('.progress-spinner img').fadeIn('fast');
					$('#suggestions').load("/index.php?ajax=true&s="+inputString+'&r='+Math.round(Math.random()*99999999), '', function() {
						$(this).fadeIn('slow');
						$('.progress-spinner img').fadeOut('fast');
					});
				}
				
			})
			
			.focus(function(e) {
				if ( $(this).val().length > 0 ) {
					$('#suggestions').fadeIn('fast');
				}
			});
	
	});
