function load_breadcrumbs_path() {
	var ul_theme = document.getElementById('theme_breadCrumb_id');
	var ul_advance = document.getElementById('advanceBreadcrumb_url_id');
	
	var newChild = document.createElement('li');
        newChild.appendChild(document.createTextNode('Home'));
        newChild.className = "hsbcDivletBreadCrumbHome";
	
	
	if ( null != ul_advance && null != ul_theme ) {
		var liArray = ul_theme.getElementsByTagName('li');
		
		for (var i=0;i<liArray.length;i++) {
		    ul_advance.appendChild(liArray[i].cloneNode(true));
		}
        } else {
        ul_advance.appendChild(newChild);	
        }	
}

if (window.addEventListener) {
	window.addEventListener( 'load',load_breadcrumbs_path, false );
} else if (window.attachEvent) {
	window.attachEvent('onload', load_breadcrumbs_path );
}
