<!-- <td colspan="2"><img src="pics/menuPrincipal.gif"></td>-->
			</tr>
			
			<tr class="textoMenu">
			<td width="10px">&nbsp;</td>
			<td>
			<?php 
$href = '- <a href="index.php?module=user_corps&method=select&id=' . $_SESSION['ident_corp'] . '" class="enlaceMenu">';
print $href . "Inicio";
?>
			
			</a><br></td></tr>
			
			<?php 
$module = new modules();
$num = $module->get_list_public_modules();
$i = 0;
while ($i != $num) {
    ?>
				
					<tr class="textoMenu">
					<td width="10px">&nbsp;</td>
					<td>
				<?php 
    $href = '- <a href ="index.php?module=' . $module->public_modules[$i][0] . '" class="enlaceMenu">';
    print $href;
    print $module->public_modules[$i][2];
    ?>
					</a><br></td></tr>
				
				<?php