<?php  
  list($allIndexRecords, $indexMetaData) = getRecords(array( 
    'tableName' => 'index', 
  )); 
  list($allClient_enquiryRecords, $client_enquiryMetaData) = getCategories(array(  
 	'tableName' => 'client_enquiry', 
  )); 
  
  list($allCurrent_vacanciesRecords, $vacancy_listingsDetails) = getRecords(array( 
    'tableName' => 'current_vacancies', 
  )); 
  
  list($allRegister_with_usRecords, $register_with_usMetaData) = getRecords(array(  
 	'tableName' => 'register_with_us', 
  )); 
  list($allAbout_usRecords, $about_usMetaData) = getCategories(array(  
 	'tableName' => 'about_us', 
  ));
  list($allContact_usRecords, $contact_usMetaData) = getRecords(array(  
 	'tableName' => 'contact_us', 
  )); 
?>
<div class="topSection">
    <img class="logo" src="assets/images/recruitmentLogo.gif" alt="Recru1tment ltd" />
    <ul class="topLogin">
        <li><a href="loginPage.php">Login</a> &nbsp;<span class="grey">//</span></li>
        <li><a href="register.php">Register</a> &nbsp;<span class="grey">//</span></li>
        <li><a href="profile.php">Your Profile</a></li>
    </ul>
    <ul class="breadcrumbs">
        <li class="grey">You are here</li>
        <li> <span class="red">//</span> <a href="">Home</a></li>
    </ul>
</div>
<div class="navigation">
    <ul class="mainNav">
        <?php foreach ($allIndexRecords as $record): ?> 
			<li <?php if ($thisPage == "index") echo "class=\"active\""; ?>><a href="<?php echo $record['_link'] ?>"><?php echo $record['title'] ?></a></li>
        <?php endforeach; ?>        
		<?php foreach ($allClient_enquiryRecords as $categoryRecord): ?> 
			<?php if(!$categoryRecord['right_features']) : ?> 
				<?php echo $categoryRecord['_listItemStart']; ?> 
					<?php if($thisPage=="clientEnquiry"): ?>
                        <span class="active"><a href="<?php echo $categoryRecord['_link'] ?>"><?php echo $categoryRecord['name'] ?></a></span>
                    <?php else: ?> 
                        <a href="<?php echo $categoryRecord['_link'] ?>"><?php echo $categoryRecord['name'] ?></a>
                    <?php endif ?>  
            	<?php echo $categoryRecord['_listItemEnd'] ?> 
            <?php endif ?> 
        <?php endforeach; ?>
       <?php foreach ($allCurrent_vacanciesRecords as $record): ?> 
			<li <?php if ($thisPage == "currentVacancies") echo "class=\"active\""; ?>><a href="<?php echo $record['_link'] ?>"><?php echo $record['navigation'] ?></a></li>
        <?php endforeach; ?>
       <?php foreach ($allRegister_with_usRecords as $record): ?> 
			<li <?php if ($thisPage == "register") echo "class=\"active\""; ?>><a href="<?php echo $record['_link'] ?>"><?php echo $record['title'] ?></a></li>
        <?php endforeach; ?> 
        
        <?php foreach ($allAbout_usRecords as $categoryRecord): ?> 
			<?php if(!$categoryRecord['right_features']) : ?> 
				<?php echo $categoryRecord['_listItemStart']; ?> 
					<?php if($thisPage == "aboutUs"): ?>
                    <span class="active"><a class="active" href="<?php echo $categoryRecord['_link'] ?>"><?php echo $categoryRecord['name'] ?></a></span>
                <?php else: ?> 
                    <a href="<?php echo $categoryRecord['_link'] ?>"><?php echo $categoryRecord['name'] ?></a>
                <?php endif ?>  
            <?php echo $categoryRecord['_listItemEnd'] ?> 
          	<?php endif ?>
        <?php endforeach; ?>
        <?php foreach ($allContact_usRecords as $record): ?> 
			<li <?php if ($thisPage == "contactUs") echo "class=\"active\""; ?>><a href="<?php echo $record['_link'] ?>"><?php echo $record['title'] ?></a></li>
        <?php endforeach; ?> 
    </ul>
</div>

