// JavaScript Document
function searchThis(value) {
			var searchLength = $("#searchText").val().length;
			if (searchLength >= 2) {
				
				$.post("php/search.php", { partialState:value }, function(data) {
					$('#results').html(data);
				});
				$('#results').fadeIn('slow');
			}
			if (searchLength == 0) {
				$('#results').fadeOut('fast');
			}
			
		}
		
		$(document).click(function() {
			$('#results').hide();
			$('#searchText').val('');
		});
