		//<a href=index.cfm>Home</a>&nbsp;		
		//<script src="/common/scripts/breadcrumbs.js" type="text/javascript"></script>

		var cnt=0;
		var cnt1=0;
		
		// Start at the beginning of the left navigation .. 
		var leftdiv = document.getElementsByTagName('div');
		
		for (var i=0; i<leftdiv.length; i++){					
			if (leftdiv[i].className == 'leftCol')		
				// for some reason, it gets weird without this... Please keep!	
				document.write("");					
				// find all the tr elements... 
      			var trs = leftdiv[i].getElementsByTagName("tr");  
      			    
      			// ... and iterate through them
      			for (var j = 0; j < trs.length; j++) {		
      				// find all the td elements... 				
					var tds = trs[j].getElementsByTagName("td");		
					// ... and iterate through them				
					for (var t=0; t<tds.length; t++){
						if (tds[t].className == 'lv2NavItem')	
							// get the URL for this navigational component..
							var hrefs = tds[t].getElementsByTagName("a");	
							// check for nulls
							if (hrefs){		
								for (var a=0; a<hrefs.length; a++){		
							 		if (cnt < 1){		
							 			var link = hrefs[a].href;		
							 			var text = hrefs[a].innerHTML;	// get the text inbetween the href tag					 			
										document.write(">&nbsp;<a href=" +link+ ">" +text+ "</a>&nbsp;");			
										cnt++;			 			
									}	
							 	}	
						 	}						
						 		
						if (tds[t].className == 'lv3NavItemAsParent')	
							var hrefs = tds[t].getElementsByTagName("a");								
							if (hrefs){	
								for (var a=0; a<hrefs.length; a++){								 	
								 	var link2 = hrefs[a].href;									 							 	
								 	if (cnt1 < 1 && link2 != link){	
								 		var text = hrefs[a].innerHTML;		
								 		document.write(">&nbsp;<a href=" +link2+ ">" +text+ "</a>");	
										cnt1++;			 			
									}								
							 	}	
						 	}
						
					}	
				}	
		}

