function setActiveForumTab( id )
{
	if( id == 1 ) {
		$('#homepage_forum_actual').hide();
		$('#homepage_forum_new').show();
		$('#tab_homepage_forum_actual').removeClass('active');
		$('#tab_homepage_forum_actual').html( FORUM_HOMEPAGE_LABELS['active'] );//'Aktuellste Kommentare');		
		$('#tab_homepage_forum_new').addClass('active');
		$('#tab_homepage_forum_new').html('<font><span>'+FORUM_HOMEPAGE_LABELS['new']+'</span></font>');
	} else {
		$('#homepage_forum_actual').show();
		$('#homepage_forum_new').hide();
		$('#tab_homepage_forum_actual').addClass('active');
		$('#tab_homepage_forum_actual').html('<font><span>'+FORUM_HOMEPAGE_LABELS['active']+'</span></font>');
		$('#tab_homepage_forum_new').removeClass('active');
		$('#tab_homepage_forum_new').html(FORUM_HOMEPAGE_LABELS['new']);//'Neueste Diskussionen');
	}
}
