$(document).ready(function(){		
	 $('#fsearch').val('street, suburb, postcode or property #').focus(function(){ $(this).val(''); }).blur(function(){ if($(this).val() == '') $(this).val('street, suburb, postcode or property #'); });	
	
	options = { serviceUrl: SITE_PATH+'system/sbsearch.php',
			minChars:3, 
			delimiter: /(,|;)\s*/, // regex or character
			maxHeight:200,
			width:248,
			zIndex: 100000,
			deferRequestBy: 0, //miliseconds
			noCache: true, //default is false, set to true to disable caching
			// callback function:
			onSelect: function(value, data){ $('#suburb_id_h').val(data); }
			};
			
	$('#fsearch').autocomplete(options);
	
	
	
});

