    var DataFiles = ["http://www.pokerstarsblog.com/tournaments/north-american-poker-tour/season-1-4/los-angeles/main-event-7/chipcount.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) {
        $(obj.blogs).each(function(el) {
			if (this.playercount >= 0) {
            $('#chipFeed tbody').append('<tr><td>' + this.playername + '</td><td>' + this.playercountry + '</td><td>' + this.playerstatus + '</td><td>' + this.playercount + '</td></tr>');	
			
			} else {
			   return;	
			}
		 }); 
		$("#chipFeed").tablesorter({ 
        // sort on the first column and third column, order asc 
        sortList: [[3,1]] 
    }); 
    }



