// AUTOCOMPLETE SCRIPT
	function lookup(term) {
		if(term.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("autocomplete.php", {queryString: ""+term+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#term').val(thisValue);
		setTimeout("$('#suggestions').hide();", .01);
	}
// END AUTOCOMPLETE

// ROTATING PROMOS
	$(document).ready(function() {
		$('#s1').cycle('scrollRight');
	});
// END ROTATING PROMOS