function init(){
	new Ajax.Autocompleter("StoreFinder","searchWrap","/includes/handler.php",{
						   parameters:"Action=StoreQuickSearch",
						   afterUpdateElement:putStoreName,
						   minChars:3,
						   indicator: 'loading'
	});
}
function putStoreName(text,li){
	var storeDetails = li.id.split("-");
	$('StoreFinder').value = storeDetails[0].replace("_"," ");
	redirect("/storedetails.php?store="+storeDetails[1]);
}