<!--
//
// lucas-photo.com menu script.  
// Copyright 2001 Michael W. Lucas.  If you use
// this please give me credit.
//
document.write('<font size="-2" face="verdana,arial">')
var slash = "/";
var homer = "http://www.lucas-photo.com";
var homer2 = "http://lucas-photo.com";

winLoc = String(window.location);
whereAmI = winLoc.replace(homer, 'Home');
whereAmI = whereAmI.replace(homer2, 'Home');

locArray = whereAmI.split(slash);

homer = '<a href="' + homer2;
document.write(homer + '">' + locArray[0] + '</a> -> ');

for (var i=1; i < locArray.length; i++)  {
  homer = homer + '/' + locArray[i];	
  if ((locArray[i+1] == undefined) || (locArray[i+1] == ""))  {
    document.write('<b>' + locArray[i] + '</b>');
    }
  else  {
    document.write(homer + '">' + locArray[i] + '</a>');
    }
  if ((locArray[i+1] != undefined) && (locArray[i+1] != ""))  {
    document.write(' -> ');
    }
  }
document.write('</font>');
document.write('<LINK REL="SHORTCUT ICON" href=" + homer2 + "/favicon.ico">');
//-->
