summaryrefslogtreecommitdiffstats
path: root/genome-site-1.0.0/content/menu.php
blob: 5acc747a012ea98ec03635ceeca176005c22a112 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
    define("HOME",    "h");
    define("DOWNLOAD",    "g");
    define("CONTRIBUTE",    "c");
    define("DOCUMENTATION",  "d");
	define("ACTIVE", "active");
	define("INACTIVE", "inactive");
        $trk = $_REQUEST['trk'];

	$home = $trk == HOME || $trk == '' ? 'active' : 'inactive';
	$download = $trk == DOWNLOAD ? 'active' : 'inactive';
	$contribute = $trk == CONTRIBUTE ? 'active' : 'inactive';
	$documentation = $trk == DOCUMENTATION ? 'active' : 'inactive';
	
?>
<div id="nav-menu">
   <ul class="l0">
	<li><div>         <a class="<?php echo $home ?>" title="Home" href="./index.php">Home</a>        </div></li>
	<li><div>         <a class="<?php echo $download ?>" title="Get the latest releases" href="./download.php?trk=g">Download</a>        </div></li>
	<li><div>         <a class="<?php echo $contribute ?>" title="Information about design/development process" href="./contribute.php?trk=c">Contribute</a>      </div></li>
	<li><div>         <a class="<?php echo $documentation ?>" title="Project documentation" href="./documentation.php?trk=d">Documentation</a>       </div></li>
   </ul>
</div>