google.load("feeds","1");function twitter(){var feedControl=new google.feeds.FeedControl();var feed=new google.feeds.Feed("http://twitter.com/statuses/user_timeline/"+tweet_source+".rss");feed.setNumEntries(4);feed.load(function(result){if(!result.error){var contenedor=document.getElementById("feeds_twitter");if(contenedor!=null){var tmpStr="";contenedor.innerHTML+=tmpStr;for(var i=0;i<result.feed.entries.length;i++){var entry=result.feed.entries[i];var tmpStr="";tmpStr+="<ul style=\"list-style:none;\">"
var fecha=entry.publishedDate.split(" ");tmpStr+="<li style=\"background:#F0FAFF;-moz-border-radius:10px;-webkit-border-radius:10px;-khtml-border-radius:10px;behavior:url('/images/maqueta/border-radius.htc');margin:10px;padding:10px;\"><p><span style=\"font-size:10px;color:#AAA;\">"+fecha[1]+" "+fecha[2]+" "+fecha[3]+" "+fecha[4]+"</span><br/>";tmpStr+="<a style=\"text-decoration:none;color:#555;font-size:11px;\" href='"+entry.link+"'>"+entry.content+"</a></p></li>";tmpStr+="</ul> ";contenedor.innerHTML+=tmpStr;}}}});}
google.setOnLoadCallback(twitter);
