var liveSearchId = 'livesearch';
var liveSearchTypeId = 'type';var searchingImageDivId = 'loading';
var keyPressDelay = null;

function delay()
{
if (keyPressDelay)		{		window.clearTimeout(keyPressDelay);		}		keyPressDelay = window.setTimeout('getLiveSearch()', 400);
		}function getLiveSearch(){

var liveSearchBox = document.getElementById(liveSearchId);
var liveSearchType = document.getElementById(liveSearchTypeId);
var results = document.getElementById('search_results');
var searchingImageDiv = document.getElementById(searchingImageDivId);
searchingImageDiv.className = "loading";
request = 'livesearch=';
request = request.concat(liveSearchBox.value);
request = request.concat('&type=');
request = request.concat(liveSearchType.value);
new Ajax.Updater('search_results', 'liveresults.php', {method:'post', postBody: request, asynchronous:true, evalScripts:true, onSuccess: function() {
var searchingImageDiv = document.getElementById(searchingImageDivId);
 searchingImageDiv.className = "idle";
}});}