// JavaScript Document
<!--
document.write('<ul>');
var str = document.title; // Get webage title 
if (str.indexOf('Saadiq Home Financing')>=0) { // if title equal to value
	document.write('<li><a href="saadiq-home-financing.html" class="selected">Saadiq Home Financing</a></li>'); // Highlight option
} else {
	document.write('<li><a href="saadiq-home-financing.html">Saadiq Home Financing</a></li>'); // Normal option
}/*
if (str.indexOf('Saadiq VISA Shopping Card')>=0) { // if title equal to value
	document.write('<li><a href="saadiq-visa-shopping-card.html" class="selected">Saadiq VISA Shopping Card</a></li>'); // Highlight option
} else {
	document.write('<li><a href="saadiq-visa-shopping-card.html">Saadiq VISA Shopping Card</a></li>'); // Normal option
}*/

document.write('</ul>');
-->

