can any body help me the create a menu(Home, My Quote, Send a Quote) using for my facebook application. When I select a tab, the menu disappears when a new page opens up. I need to display my page under the menu itself, so how to do that
the code is
<div>
<fb:tabs>
<fb:tab-item href="http://apps.facebook.com/ranpariya/index.php" title="Home"
<?php if ($page == 'index.php'):?>selected="true"<?php endif;?>/>
<fb:tab-item href="http://apps.facebook.com/ranpariya/friends.php" title="Friends" <?php if ($page == 'friends.php'):?>selected="true"<?php endif;?>/>
<fb:tab-item href="http://apps.facebook.com/ranpariya/my_tab.php" title="Invite Friends" align="right" <?php if ($page == 'invite.php'):?>selected="true"<?php endif;?>/>
</fb:tabs>
</div>