/*!
 * http://www.reynoldsftw.com
 *
 * Created by Steve Reynolds
 */

var timer;   
  
$(document).ready(function() {   
  
getSearch(); 
  
});   
  
function getSearch()   
{

	clearTimeout(timer);   
	var results = "";   
	var theQuery = "#westhamwednesday";   
  
	$.post("getSearch.php", {query: theQuery},  function(xml){   
		$('entry',xml).each(function(i){   
			var title = $(this).find("title").text();
			var author = $(this).find("name").text();   
			var uri = $(this).find("uri").text();
			var img = $(this).find("link[type~=image/png]").attr("href");

			results = 
				results + 
				"<li>" + "<img class='profilepic' src='" + img + "' />" + title + "<br />" + "<a href='" + uri + "'>@" + author + "</a></li>";   
		});   
	$("#container").html(results);   
	});   
  
	timer = setTimeout('getSearch()', 30000);   
}
