<!--
//find out what the current page is, or what top frameset is
if (window.parent)
	curFile = window.parent.location;
else
	curFile = window.location;
	
curFile = new String(curFile);
curFile = curFile.substring(curFile.lastIndexOf('\/')+1, curFile.length);

function writelink(xurl, xtext, xbr, xfinal)
{
	//if the current page is the link we're about to output, then don't write a link
	if (curFile != xurl)
	{
		document.write('<a href=\"' + xurl + '\">' + xtext + '<\/a>&nbsp;');
	}
	else
	{
		document.write('<b>' + xtext + '<\/b>&nbsp;');
	}
	if (xbr)
	{
		document.write('<br>');
	}
	else
	{
		if (!xfinal)
		{
			document.write('|&nbsp;');
		}
	}
	return;
}

writelink('index.html', 'Home', 0, 0);
writelink('dogs.html', 'Meet Our Dogs', 0, 0);
writelink('studsBitches.html', 'Stud Dogs\/Brood Bitches', 1, 0);
writelink('saleAdoption.html', 'For Sale or Adoption', 0, 0);
writelink('breeding.html', 'Expected Litters & Breeding', 0, 0);
writelink('puppies.html', 'Puppies', 0, 0);
writelink('contact.html', 'Contact', 0, 0);
writelink('links.html', 'Links', 0, 1);

//-->
