jQuery(document).ready(function() {
	
	// for the article / comments tabs
	var postTabsContainer = $('div#postTabs > div');
    
    $('div#postTabs ul#postTabsNav a').click(function () {
        postTabsContainer.hide().filter(this.hash).show();
        
        $('div#postTabs ul#postTabsNav a').removeClass('selected');
        $(this).addClass('selected');
        
        return false;
    }).filter(':first').click();

});
