
var mpTabClick	=	function( $thisTab,$otherTab,$thisList,$otherList ){
	$thisList.show();
	$otherList.hide();
	$thisTab.addClass( "on" );
	$otherTab.removeClass( "on" );
}
var initMostPopularPod	=	function(){
	$mp2			=	$( "#mp2" ).hide();
	$mp1			=	$( "#mp1" );
	$mpPod		=	$( "#mostPopularArticlesPod").addClass( "tabbed" );
	$mp1Head	=	$( "#mp1Head" ).addClass( "tab on" ).click( function(){ mpTabClick( $(this),$mp2Head,$mp1,$mp2 ) });
	$mp2Head	=	$( "#mp2Head" ).addClass( "tab" ).click( function(){ mpTabClick( $(this),$mp1Head,$mp2,$mp1 ) });
}