var links = [
	["Home", "/"],
	["About", "/about/"],
	["Softwares", "/softs/"],
	["Documents", "/docs/"],
	["Support", "/support/"],
	["Contact us", "/contact/"]];
var linkssize = links.length;
var i = 0;
var uri = document.URL;
var current = "";
var onhome = false;

if (uri == "http://localhost/canadoh/") {
	onhome = true;
}

document.writeln('<div id="cotbar">');
document.writeln('<ul>');

for (i = 0; i < linkssize; i++ ) {
	if (uri.search("canadoh" + links[i][1]) > 0) {
		if ((onhome == false && i > 0) || (onhome == true && i == 0)) {
			current = " class=\"current\"";
		}
	} else {
		current = "";
	}
	
	document.writeln("<li><a href=\"" + links[i][1] + "\"" + current + ">" + links[i][0] + "</a></li>");
}

document.writeln('</ul>');
document.writeln('</div>');

/*
	<div id="cotbar">
		<ul>
			<li><a href="index.html">Home</a></li>
			<li><a href="about/index.html">About</a></li>
			<li><a href="softs/index.html">Softwares</a></li>
			<li><a href="docs/index.html">Documents</a></li>
			<li><a href="support/index.html">Support</a></li>
		</ul>
	</div>
*/

