/*!
 * http://www.reynoldsftw.com
 *
 * Created by Steve Reynolds
 */

var timer;  
var timerh; 
  
$(document).ready(function() {   
  

getSearch(); 
 
  
});   



function getSearch()   
{

	clearTimeout(timer);   
	var results = "";   
	var theQuery = "#barcampval09 OR #barcampvalencia09 OR #barcampval";   
  
	$.post("getSearch.php", {query: theQuery},  function(xml){ 
														  
		$('entry',xml).each(function(i){ 
									 
			var title = $(this).find("title").text();
			
			var name = $(this).find("name").text();
			
			
			var authorlink = $(this).find("uri").text();
			
			var authortotal = "<a href=\"" + authorlink + "\"> " + name + " </a>";
			
			//var avatar = $(this).find(
			
			
			
			results = results + "<p class=\"p"+i+"\">" + title + " <br/> <span> por: " + authortotal  + "</span></p> <hr/>"; 
			
		});   
	$("#container").html(results);   
	});   
  
	timer = setTimeout('getSearch()', 30000);   
}


