var text = new Array()
var url = new Array()
text[0] = "Home"
url[0] = "index.html"

text[1] = "Product"
url[1] = "link1.htm"
text[2] = "Text 2"
url[2] = "link2.htm"
text[3] = "Text 3"
url[3] = "link3.htm"
text[4] = "Text 4"
url[4] = "link4.htm"
text[5] = "Text 5"
url[5] = "link5.htm"
text[6] = "Text 6"
url[6] = "link6.htm"
text[7] = "Text 7"
url[7] = "link7.htm"

function Breadcrumbs ()
{

var crouton = new Array("2","1","4","7");

document.write("<a href=\""+url[0]+"\">"+text[0]+"</a>"+" &gt; ");
	for (i = 0; i < crouton.length; i++){
if (i < crouton.length - 1)
	   {
	document.write(" <a href=\""+url[crouton[i]]+"\">"+text[crouton[i]]+"</a>"+ "&gt;" );
   		}
	else
   	{
	document.write(" <a href=\""+url[crouton[i]]+"\">"+text[crouton[i]]+"</a>" );
   }
}

}

