$(document).ready(init);

    function init(){
        getHtml();
    }


    function getHtml(){
        $.jGFeed('http://www.thefutbolclub.com/blog/?feed=rss2',
            function(feeds){
              // Check for errors
              if(!feeds){
                // there was an error
                return false;
              }
              // do whatever you want with feeds here
              for(var i=0; i<3; i++){
                var entry = feeds.entries[i];
               
                $("#blog_news").append("<li><a href='blog/'><img src='imgs/blog"+(i+1)+".jpg' border='0' class='blog_css'>"+entry.title+"</a>")
              }
            }, 10);
    }

