function breadcrumbs(){
	sURL = new String;
	bits = new Object;
	var x = 0;
	var stop = 0;
	var output = "";
	var UrlOut = "";
	sURL = location.href;
	bits = sURL.split("/");
	stop = bits.length - 1;
	if (stop > 3) {
		if (bits[stop].indexOf("index") > -1 || bits[stop].length < 3) {
			stop--;
		}
		for (x = 2; x < stop; x++) {
			if (x == 2) {
				output += "<a href=\"/\">Home</a>  <img src='/images/breakcrumb-arrow.jpg' width='8'height='7' />";
			} else {
				UrlOut += bits[x] + "/";
				output += "<a href=\"/" + UrlOut + "\">" + bits[x] + "</a>  <img src='/images/breakcrumb-arrow.jpg' width='8'height='7' />";
			}
		}
	}
	document.write(output + document.title);
}
