<!--
//This script copyrighted by Debra Burrell and Artechulate Web Consulting.

	var navLabels = new Array   
		("home",
		"about our store",
		"products",		
		"services",	
		"our commitment",
		"contact us",	
		"search");


	var pages = new Array
		("index.shtml",
		"about.shtml",	
		"products.shtml",	
		"services.shtml",	
		"commitment.shtml",	
		"contact.shtml",		
		"search.shtml");



	var currentPage = window.location.href; 
	if (currentPage.indexOf(".shtml") == -1)
	{
		currentPage += "index.shtml"; 
	}
	for (i = 0; i < pages.length; i++)
	{

		navLink='<a class="navBar" href="' + pages[i] + '">' + navLabels[i] + '</a>'; 

		if (currentPage.indexOf(pages[i]) != -1)
		{
			navLink='<span class="current">' + navLabels[i] + ' </span>';
		}
		document.write('<p class="navBar">' + navLink + ' &nbsp;</p>');

	}

//-->

