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