function section_persistent(){
		
			$metatab_array = array(
					'_second_nav_menu' => array(
						'type' => 'select_menu',			
						'title' => 'Select Secondary Nav Menu',
						'desc' => 'Select the menu you would like to use for your secondary nav.'
					)
				);
				
			add_global_meta_options( $metatab_array );
		
	}
	function section_persistent(){
		$global_meta = array(
			'_pagelines_layout_mode' => array(
				'type' => 'select',
				'selectvalues'=> array(
					'fullwidth'				=> array( 'name' => 'Fullwidth layout', 'version' => 'pro' ),
					'one-sidebar-right' 	=> array( 'name' => 'One sidebar on right' ),
					'one-sidebar-left'		=> array( 'name' => 'One sidebar on left' ),
					'two-sidebar-right' 	=> array( 'name' => 'Two sidebars on right', 'version' => 'pro' ),
					'two-sidebar-left' 		=> array( 'name' => 'Two sidebars on left', 'version' => 'pro' ),
					'two-sidebar-center' 	=> array( 'name' => 'Two sidebars, one on each side', 'version' => 'pro' ),
				),
				'title' => 'Content Section - Select Layout Mode (optional)',
				'desc' => 'Use this option to change the content layout mode on this page.'
			),
		);
		
		add_global_meta_options( $global_meta );
	}