function breadcrumbs() {

var text = new Array(); 
var url = new Array(); 
text[0] = "Home"; 
url[0] = "index.html"; 
text[1] = "Contact Us"; 
url[1] = "contact.html"; 
text[2] = "Government"; 
url[2] = "Government.html"; 
text[3] = "2006 Minutes";
url[3] = "Meetings2006.html";
text[4] = "2005 Minutes"; 
url[4] = "Meetings2005.html"; 
text[5] = "2006 Finances"; 
url[5] = "Financial2006.html";
text[6] = "2005 Finances"; 
url[6] = "Financial2005.html"; 
text[7] = "Board Members"; 
url[7] = "BoardMembers.html";
text[8] = "2004 Minutes"; 
url[8] = "Meetings2004.html"; 
text[9] = "2004 Finances"; 
url[9] = "Financial2004.html";
text[10] = "Public Safety"; 
url[10] = "public.html";
text[11] = "Building and Zoning"; 
url[11] = "building.html";
text[12] = "Village Hall"; 
url[12] = "VillageHall.html";
text[13] = "Culvert Permit"; 
url[13] = "culvert_permit.html";
text[14] = "Meeting Information";
url[14] = "Meetings2010.html";
text[15] = "Finances"; 
url[15] = "Financial2010.html";
text[16] = "2009 Minutes";
url[16] = "Meetings2009.html";
text[17] = "2009 Finances"; 
url[17] = "Financial2009.html";


output = 'Back To:&nbsp;&nbsp <a href="' + url[0] +'"' +'>' +text[0] +'</a>' + ' &#187 ' ;

for (i = 0; i < arguments.length; i++)
 {
   output += '<a href="' + url[arguments[i]] + '"' +'>' +text[arguments[i]] +'</a>' + ' &#187 ';
 }
output += document.title;
document.write(output) ;
}

