    var DataFiles = ["http://www.pokerstarsblog.net/news/the-big-game/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')) {
                if (el > 0) { container.append('<div class="hr"></div>') };
                var str = '	<div class="blogitem">\
				<p><strong><a href="' + this.link + '" target="_blank">' + this.title + '</a></strong><br />\
		        <span class="date">' + this.date + '</span></p>\
				</div>';
                container.append(str);
            }
        });
		container.jScrollPane({showArrows:true,scrollbarWidth:15});		
        //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 
        
    }
