// twitter term search function
function wordsearch(word,query)
{
	var squery = word + '+' + query;
	
	$("#loading").ajaxStart(function(){
		$(this).attr('src', 'images/loading.gif')
	});
	
	$("#loading").ajaxStop(function(){
		$(this).attr('src', 'images/loading_off.gif')
	});

	$.ajax({
		type: "GET",
		url: "feed.php?search&query=" + squery,
		dataType: "html",
		success: function(data) {
			$("#result").html(data)
			$("#twsrch").show();
		}//close success
	}); //close $.ajax(
}