     google.load("feeds", "1");
     
     
     function addRandomTag(elem, tag) {
       var search = "http://www.juixe.com/techknow/index.php?s="+tag;
       var anchor = document.createElement("a");
       anchor.setAttribute("href", search);
       anchor.setAttribute("title", tag);
       var random = Math.floor(Math.random()*6 + 1);
       anchor.setAttribute("class", "nube"+random);
       anchor.appendChild(document.createTextNode(tag));
       elem.appendChild(anchor);
       elem.appendChild(document.createTextNode(" "));
     }
     
     function addFeedEntries(container, result) {
       for (var i = 0; i < result.feed.entries.length; i++) {
         var entry = result.feed.entries[i];
         
         var anchor = document.createElement("a");
         anchor.setAttribute("href", entry.link);
         anchor.setAttribute("title", entry.title);
         anchor.appendChild(document.createTextNode(entry.title));
         
         var li = document.createElement("li");
         li.appendChild(anchor);
         container.appendChild(li);
       }
     }
     
     function initialize() {
       // Load feed from  Juixe TechKnow
       var blogFeed = new google.feeds.Feed("http://www.juixe.com/techknow/index.php/feed/atom/");
       blogFeed.load(function(result) {
         if (!result.error) {
           var container = document.getElementById("techknowFeed");
           if(container) {
             addFeedEntries(container, result);
           }
         }
       });
       // Load fee from Juixe TechKnow comments
       var commFeed = new google.feeds.Feed("http://www.juixe.com/techknow/index.php/comments/feed/");
       commFeed.load(function(result) {
         if (!result.error) {
           var container = document.getElementById("commentsFeed");
           if(container) {
             addFeedEntries(container, result);
           }
         }
       });
       
       // random/dumb cloudspace
       var tags = [
         "java", "javascript", "js", "ruby", "rails", "ruby on rails",
         "php", "html", "css", "maven", "code", "tutorial", "javaone",
         "ajax", "jvm", "bytecode", "jruby", "gwt", "toolkit", "framework",
         "eclipse", "netbeans", "web 2.0", "desktop", "xhtml", "semantic",
         "taggable", "acts as", "plugins", "commentable", "rss", "xml",
         "social software", "folksonomy", "video", "api", "REST", "pagerank",
         "tag cloud", "digg", "microformats", "google maps", "design"
       ];
       tags.sort();
       var slogan = document.getElementById("slogan");
       for(var i=0; i < tags.length; i++) {
         addRandomTag(slogan, tags[i]);
       }
     }
     google.setOnLoadCallback(initialize);