
	var timeout;
	var whichInput;
	
	$(document).ready(function(){
		$(".searchq").focus(function(event){
			whichInput = $(this);
			this.value = ''; 
			$(this).css('color', '#000000');
		});
		
		$(".searchq").keyup(function(event){
			clearTimeout(timeout);
			timeout = setTimeout(function (){
				if(!document.getElementById('livesearch')) {
					var ls = document.createElement('div');
					ls.id = 'livesearch';
					whichInput.parents().append('<div style="clear:both"><!-- // --></div>');
					whichInput.parents().append(ls);			
				}
		
				$('#livesearch').load('/listings/livesearch/'+whichInput.attr('value').replace(/ /,'+'));
			}, 400);
		});
	});
	
	function setq(str) 
	{
		whichInput.attr('value', str);
		suggestion_close();
	}
	
	function suggestion_close()  {
		$('#livesearch').remove();
	}
