$(function () {
        var tabContainers = $('#ForumTabs > .ContainerContentsWrapper > div'),
            tabButtons = $('#ForumTabNavigation > li > a');
        
        tabContainers
            .hide()
            .filter(':first')
            .show();
        
        tabButtons
            .click(function () {
                tabContainers
                    .hide();
                tabContainers
                    .filter(this.hash)
                    .show();
                tabButtons
                    .removeClass('selected');
                $(this)
                    .addClass('selected');
                return false;
            })
            .filter(':first')
            .click();
	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	0
		}
	);
	
	$("#output li")
		.filter(':first')
		.siblings()
		.hide();
	
	$('#Apology a').popupLink(540,260);
});
