/*
The Linkin Park Projekt
http://www.lpprojekt.com
*/

document.observe("dom:loaded", 
	function ()	{
		getPosts();
	}
);

//Get latest posts from forum
function getPosts() {
		$("latestforum").appendChild(new Element("ul", { "id": "forum_posts"}));
		for (var i = 0; i < threads.length; i++) {
			var post_id = "forumpost_" + i;
			$("forum_posts").appendChild(new Element("li", {"id" : post_id}));
			$(post_id).appendChild(new Element("a", { "href" : "/forum/showthread.php?t=" + threads[i].threadid })).update(threads[i].title);
		}
}