function loadBreadcrumbs()
{
	
	// ---------------- BREADCRUMBS ----------------- \\
	var breadcrumbDiv = document.getElementById('path');
	
	// Creates Home link
	var homeLink=document.createElement('a');
  		homeLink.setAttribute('href','/En/Default.html');
  	var homeLinkText=document.createTextNode('Home');
  		homeLink.appendChild(homeLinkText);
	var homeDivider=document.createTextNode('  >  ');
	
	// Creates Section link
	var sectionLink=document.createElement('a');
  		sectionLink.setAttribute('href','/En/'+currentSection+'/Default.html');
  	var sectionLinkText=document.createTextNode(currentSection);
  		sectionLink.appendChild(sectionLinkText);
	var sectionDivider=document.createTextNode(' > ');
	
	
	
	
	
	// Current Page Name
	var pageLinkText=document.createTextNode(currentPage);
	
	breadcrumbDiv.appendChild(homeLink);
  	breadcrumbDiv.appendChild(homeDivider);
	
	// Adds breadcrumbs to 'path' div
	if(currentSection != "Home"){
		if(currentFile == "Default.html"){
			breadcrumbDiv.appendChild(sectionLinkText);
		}else{
		breadcrumbDiv.appendChild(sectionLink);
		breadcrumbDiv.appendChild(sectionDivider);
		
		breadcrumbDiv.appendChild(pageLinkText);
		}
	}
	else{
		breadcrumbDiv.appendChild(pageLinkText);
	}
	
}
