function twitterCallback1(C){
var theRows = document.getElementsByTagName("tr");
var A=[];
	for(var D=0;D<C.results.length;D++){
		var B=C.results[D].text;
		var P=C.results[D].from_user;
		E=C.results[D].from_user;
		if (C.results[D].id > theRows[20].id.substring(7,17)) {
			newRow = document.getElementById("timeline").insertRow(0);
			newRow.setAttribute("class", "hentry status");
			newCell1 = newRow.insertCell(0);
			newCell2 = newRow.insertCell(1);
			newCell3 = newRow.insertCell(2);
					newCell3.setAttribute("class", "actions");
			newText = document.createTextNode(B);
			newCell2.appendChild(newText);
			newCell1.innerHTML = "<a href='http://twitter.com/"+C.results[D].from_user+"'><img src='"+C.results[D].profile_image_url+"' /></a>";
			newCell2.innerHTML = "<strong><a href='http://twitter.com/"+C.results[D].from_user+"'>"+C.results[D].from_user+"</a></strong> "+B+'<span class="meta entry-meta"><span>quietly following with</span> <a href="http://www.designmeme.com/shadow-twitter">shadow</a></span>';
			newCell3.innerHTML = '<div><a href="#" class="non-fav" id="status_star_'+C.results[D].id+'" title="favorite this update">&nbsp;&nbsp;</a> <a href="/home?status=@'+C.results[D].from_user+'%20&in_reply_to_status_id='+C.results[D].id+'" class="repl" title="reply to '+C.results[D].from_user+'">&nbsp;&nbsp;</a>      </div>';
	
		}
	}
}
