';
$current_tab = isset( $_GET['tab'] ) ? $_GET['tab'] : "options";
$tabs = array(
'start' => 'Getting Started',
'options' => 'Online Ordering Menu Options',
'faq' => 'Support / FAQ',
'signup' => 'Sign Up'
);
echo '
';
echo '';
foreach ( $tabs as $tab_key => $tab_caption ) {
$active = $current_tab == $tab_key ? 'nav-tab-active' : '';
echo '' . $tab_caption . '';
}
echo '
';
if( array_key_exists($current_tab, $tabs) ) include("inc/content-".$current_tab.".php");
echo ''; //end warp
?>