
var paths = new Array("index.html", "mystory.html", "letters.html", "reference.html", "refinance.html", "ecumenical.html")
var status = new Array("Debtor Support Ministry Home", "My Story", "Suggested Letters and Information", "Reference Materials", "Refinancing Web Site", "Ecumenical Web Sites");

currPath = location.pathname;

if (currPath.length <= 1) {currPath = "index.html"}

for (x = 0; x < paths.length; x++) {
	if (currPath.indexOf(paths[x]) < 0)	{	
	    document.write('<a href="'+paths[x]+'" onmouseover="On('+(x+1)+')" onmouseout="Off('+(x+1)+')">');
		document.write('<img src="images/opt_off'+(x+1)+'.gif" NAME=option'+(x+1)+' ALT="'+status[x]+'" width="126" height="86" border="0"></A>');
	}else{	
		document.write('<img src="images/opt_here'+(x+1)+'.gif" width="126" height="86" border="0" alt="'+status[x]+'">');
		
	}
}
