function showResult(str){
	if (str.length==0 || str.length <= 2 ){
		document.getElementById("livesearch").innerHTML="";
		document.getElementById("livesearch").style.border="0px";
		return;
	}

	jQuery.getJSON("http://classified.gpubit.com/livesearch.php?q="+str+"&callback=?",//ticker.php?callback=?",

	function(data) {
		var res = '';
		for(var i=0; i<data.length; i++) {
			res+= "<p>"+data[i].results + "</p>";
  	}
		$("#livesearch").html(res);
	});

} //end showResult function
