var api = new GamepotApi();
api.num = 5;
api.getForumList('55', '#top_forum_list'); // The Pub


function callbackForumList(jsonObj){
	var list="", i;
	for (i=0; i<jsonObj.forumList.length; i++)	// max jsonObj.forumList.length=15
	{
		if ( i>=jsonObj.num ) break;
		list = list + "<li>\n";
		list = list + "<span class='forumlist'><a href='http://forum.gamepotusa.com/showthread.php?"+jsonObj.forumList[i].threadid+"' target='_blank'>"+jsonObj.forumList[i].title+" ("+jsonObj.forumList[i].poster+")</a></span>\n";
		list = list + "<span class='forumdate'>"+jsonObj.forumList[i].threaddate+"</span>\n";
		list = list + "</li>\n\n";

	}
	list = "<ul>\n"+list+"</ul>\n";

	jQuery.noConflict()(function(){
		jQuery(jsonObj.target).html(list);
	});
}



