    var DataFiles = ["http://www.pokerstarsblog.it/tournaments/italian-poker-tour/entries.js"]
    $(document).ready(function() {
        $(DataFiles).each(function(index) {
            var fileref = document.createElement('script');
            fileref.setAttribute("type", "text/javascript");
            fileref.setAttribute("src", this.toString());
            document.getElementsByTagName("head")[0].appendChild(fileref);
        })
    });
    function psRenderBlogs(obj) {
        var container = $('#latestPosts');
        container.html('');
        $(obj.blogs).each(function(el) {
            if (this.hasOwnProperty('post') && (el <= 0)) {
				var post = this.post;
				var limit = 160;
				var limitedPost = (post.substr(0, limit-1) +'\
				...\
				<br /><a href="' + this.link + '" target="_blank">Leggi tutto</a>');
                var str = '<table border="0" cellspacing="0" cellpadding="0">\
  <tr>\
    <td width="268" valign="top"><strong><a href="' + this.link + '">' + this.title + '</a></strong><br>\
      <p>' + limitedPost + '</p></td>\
    <td width="165" valign="top" align="right"><img src="http://www.pokerstarsipt.com/images/img-news.jpg" alt="PokerStars.it IPT"></td>\
  </tr>\
</table>';
                container.append(str);
            }
			
        });
        //Uncomment the line below to use the jquery scroll bar, but you will need to add it's reference at the top.
        //container.jScrollPane({ showArrows: true, scrollbarWidth: 15 
        
    }