$(document).ready(function() {
	
	var root = deriveRoot();
	
	$("span.noJS").remove();
	
	if($("#town").length > 0)
	{
		$("#town").autocomplete(root+"?area=townAutoComplete", {
				delay			: 400,
				formatItem		: formatItem
			});
	}
	if($("#county").length > 0)
	{
		$("#county").autocomplete(root+"?area=countyAutoComplete", {
				delay			: 400,
				formatItem		: formatItem
			});
	}
});

function formatItem(row) {
	return '<span class="main">'+row[0]+'</span><br><i>'+row[1]+'</i>';
}

function deriveRoot()
{
  var root = window.location.protocol+'//'+window.location.hostname+'/';
  
  if ( ( pos = window.location.pathname.search('public_html') ) != -1 )
  {
    root += window.location.pathname.substring(1,pos+12);
  }
  
  if ( window.location.pathname.search('demo') != -1 )
  {
    root += 'demo/';
  }
  
  return root;
}