function topNav(dirIndex,navOn)
{
	var arrDir = new Array("","../","../../","../../../");
	var arrNavImgName = new Array("Image14","Image15","Image16","Image17","Image18","Image19");
	var arrNavImg = new Array("images/nav_marketing_on.gif","images/nav_webdev_on.gif","images/nav_hosting_on.gif","images/nav_clientsproj_on.gif","images/nav_contact_on.gif","images/nav_support_on.gif");
	
	document.writeln('	<table border="0" align="center" cellpadding="0" cellspacing="0">');
	document.writeln('        <tr>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'marketing_solutions.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image14\',\'\',\''+arrDir[dirIndex]+'images/nav_marketing_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_marketing_off.gif" name="Image14" width="149" height="43" border="0" alt="Mad Web Designs has the best marketing strategy in Toronto, Mississauga and the GTA."></a></td>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'web_dev.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image15\',\'\',\''+arrDir[dirIndex]+'images/nav_webdev_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_webdev_off.gif" name="Image15" width="132" height="43" border="0" alt="Mad Web Designs has the best web development and web site design in Toronto, Mississauga and the GTA."></a></td>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'hosting.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image16\',\'\',\''+arrDir[dirIndex]+'images/nav_hosting_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_hosting_off.gif" name="Image16" width="130" height="43" border="0" alt="Mad Web Designs offers the most affordable and reliable web hosting services and solutions in Toronto, Mississauga and the GTA."></a></td>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'clients_and_projects.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image17\',\'\',\''+arrDir[dirIndex]+'images/nav_clientsproj_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_clientsproj_off.gif" name="Image17" width="132" height="43" border="0" alt="Mad Web Designs has worked with many clients and projects throught the Toronot, Mississauga and the GTA area."></a></td>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'contact_us.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image18\',\'\',\''+arrDir[dirIndex]+'images/nav_contact_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_contact_off.gif" name="Image18" width="74" height="43" border="0" alt="Contact Mad Web Designs in Toronto, Mississauga and the GTA area."></a></td>');
	document.writeln('          <td><a href="'+arrDir[dirIndex]+'tech_support.cfm" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image19\',\'\',\''+arrDir[dirIndex]+'images/nav_support_on.gif\',1)"><img src="'+arrDir[dirIndex]+'images/nav_support_off.gif" name="Image19" width="77" height="43" border="0" alt="Mad Web Designs has technical support in Toronto, Mississauga and the GTA area."></a></td>');
	document.writeln('        </tr>');
	document.writeln('	</table>');
	
	if(navOn >= 0 && navOn < arrNavImgName.length)
	{
		document.images[arrNavImgName[navOn]].src = arrDir[dirIndex]+""+arrNavImg[navOn];
	}
}
