  var timer; 	
  $(document).ready(function() {
    $("#tabs").tabs();
    getSearch();
  });
  function getSearch()   
	{
	
		clearTimeout(timer);   
		var results = "";   
		var theQuery = "#DofD";   
	  
		$.post("getSearch.php", {query: theQuery},  function(xml){   
			$('entry',xml).each(function(i){   
				var title = $(this).find("content").text();   
				var name = $(this).find("name").text();  
				var uri = $(this).find("uri").text();
				var username = uri.replace("http://twitter.com/", "");
				results = results + "<div class='twitter-background'><a href='" + uri + "' target='_blank'>" + username + "</a> " + title + "</div>";   
			});   
		$("#tweetContainer").html(results);   
		});   
	  
		timer = setTimeout('getSearch()', 30000);   
	}// JavaScript Document
