/*
	BreadCrumbs.js
	Errol Sayre
	esayre@olemiss.edu
	
	Provided by the Office of Research and Sponsored Programs
	The University of Mississippi
	
	This script is free to be used but provides no warranty of function or quality.
*/

// BreadCrumb configuration
// set up the site prefix
var sitePrefix = "/";
	// Please note that we don't use the whole prefix, just the important
	//	part that we need for the server so as to make this script easy for
	//	us to migrate between testing and live server. You can use whatever you
	//	like here.

// set up the bread crumb separator text
var breadCrumbSeparator = " > ";

// set up our list of crumb items
	// The bread crumb items refer to items on your site that require special
	//	labels. You can specify a label specifically using the URI of the
	//	file/folder or generically for all occurences of a file/folder.
var breadCrumbLabels = new Array();
// generic labels
breadCrumbLabels["about.shtml"] = "About Us";
breadCrumbLabels["careerdetails.cgi"] = "Career Details";
breadCrumbLabels["employers.shtml"] = "Employers";
breadCrumbLabels["calen.php"] = "Events Calendar";
breadCrumbLabels["bestpractices.shtml"] = "Best Practices";
breadCrumbLabels["news3.shtml"] = "News and Articles";
breadCrumbLabels["contact.shtml"] = "Contact Info";
breadCrumbLabels["faqs.shtml"] = "FAQ's";
breadCrumbLabels["research.shtml"] = "Research and Studies";
breadCrumbLabels["disabilitycareers.shtml"] = "Career Opportunities";
breadCrumbLabels["tourismskills.shtml"] = "Tourism Skills";
breadCrumbLabels["superhost.shtml"] = "Super Host";
breadCrumbLabels["readytowork.shtml"] = "Ready to Work";
breadCrumbLabels["success.shtml"] = "Success Stories/Testimonials";
breadCrumbLabels["emerit.shtml"] = "About emerit Program";
breadCrumbLabels["testimonial.shtml"] = "Testimonials";
breadCrumbLabels["national.shtml"] = "National Occupational Standards";
breadCrumbLabels["online.shtml"] = "Online Resources";
breadCrumbLabels["news.shtml"] = "News and Articles";
breadCrumbLabels["breadcrumb.html"] = "Bread Crumb";
breadCrumbLabels["resources.shtml"] = "Other Resources";
breadCrumbLabels["disabilities.shtml"] = "Disabilities";
breadCrumbLabels["supervisor.shtml"] = "Supervisor Training";
breadCrumbLabels["frontline.shtml"] = "Frontline Training";
breadCrumbLabels["management.shtml"] = "Management Training";
breadCrumbLabels["register.shtml"] = "Employer Registration";
breadCrumbLabels["jppolicy.shtml"] = "Job Posting Policy";
breadCrumbLabels["finding.shtml"] = "Recruitment Information";
breadCrumbLabels["hiring.shtml"] = "HR Tool Kit";
breadCrumbLabels["retention.shtml"] = "Employee Retention";
breadCrumbLabels["developing.shtml"] = "Training and Developing Employees";
breadCrumbLabels["yaemployer.shtml"] = "Youth";
breadCrumbLabels["yaresources.shtml"] = "Resources";
breadCrumbLabels["ncemployer.shtml"] = "New Canadians";
breadCrumbLabels["canexperience.shtml"] = "Canadian Experience";
breadCrumbLabels["benchmarks.shtml"] = "Language Benchmarks";
breadCrumbLabels["mwemployer.shtml"] = "Mature Workers";
breadCrumbLabels["empmwresources.shtml"] = "Resources";
breadCrumbLabels["employees.shtml"] = "Employees";
breadCrumbLabels["cal.php"] = "Events Calendar";
breadCrumbLabels["jobfaqs.shtml"] = "FAQs";
breadCrumbLabels["links.shtml"] = "Tourism Links";
breadCrumbLabels["success.shtml"] = "Success Stories and Testimonials";
breadCrumbLabels["techniques.shtml"] = "Interview Questions";
breadCrumbLabels["lifelong.shtml"] = "Professional/Rewarding Career";
breadCrumbLabels["steppingstone.shtml"] = "Stepping Stone";
breadCrumbLabels["lifestyle.shtml"] = "Lifestyle Choices";
breadCrumbLabels["youth.shtml"] = "Youth";
breadCrumbLabels["youthcareers.shtml"] = "Career Opportunities";
breadCrumbLabels["newcareers.shtml"] = "Career Opportunities";
breadCrumbLabels["maturecareers.shtml"] = "Career Opportunities";
breadCrumbLabels["formal.shtml"] = "Formal Education";
breadCrumbLabels["printed.shtml"] = "Printed Resources";
breadCrumbLabels["skills.shtml"] = "Tourism Skills";
breadCrumbLabels["ready.shtml"] = "Ready to Work";
breadCrumbLabels["contact.shtml"] = "Contact Us";
breadCrumbLabels["sitemap.shtml"] = "Site Map";
breadCrumbLabels["news2.shtml"] = "News";
breadCrumbLabels["privacy.shtml"] = "Privacy Policy";
breadCrumbLabels["foryou.shtml"] = "Is Tourism For You?";
breadCrumbLabels["tourism.shtml"] = "Tourism Training";
breadCrumbLabels["resource.shtml"] = "Resources";
breadCrumbLabels["council.shtml"] = "Sector Council";
breadCrumbLabels["ttraining.shtml"] = "Tourism Training";
breadCrumbLabels["dimensions.shtml"] = "Personality Dimensions";
breadCrumbLabels["jobboard.shtml"] = "Job Board";
breadCrumbLabels["disctourism.shtml"] = "Discover Tourism";
breadCrumbLabels["index.shtml"] = " ";
breadCrumbLabels["etraining.shtml"] = "Training";
breadCrumbLabels["learning.shtml"] = "Online Resources";
breadCrumbLabels["groups.shtml"] = "Employment Groups";
breadCrumbLabels["certification.shtml"] = " Professional Certification";
breadCrumbLabels["newcanadians.shtml"] = "New Canadians";
breadCrumbLabels["mature.shtml"] = "Mature Workers";
breadCrumbLabels["preparing.shtml"] = "Preparing for a Job";
breadCrumbLabels["Links.shtml"] = "Tourism links";
breadCrumbLabels["thankyou.shtml"] = "Thank You";
breadCrumbLabels["resume.php"] = "Online Resumé";

// specific labels
//breadCrumbLabels["/"] = "My Website";
//breadCrumbLabels["images/"] = "Images Folder";
breadCrumbLabels["/careers"] = "2";
function displayBreadCrumbs(attempts)
{
	// locate the breadcrumb container
	var theBreadCrumbBar = null;
	if (document.all)
	{
		theBreadCrumbBar = document.all.BreadCrumbBar;
	}
	else
	{
		theBreadCrumbBar = document.getElementById("BreadCrumbBar");
	}
	
	// check to make sure that we have our breadcrumb bar
	if (theBreadCrumbBar != null)
	{
		// get the current url
		// we'll want to ensure that we get the start of our site so, we'll
		//	ignore everything up to and including our site prefix
		var thePath = location.href;
		var theProtocol = "";
		var theSite = "";
		
		// strip out the protocol from the path
		theProtocol = thePath.substring(0, thePath.indexOf("://") + 3);
		thePath = thePath.substring(thePath.indexOf("://") + 3);
		
		// strip out the site name
		theSite = thePath.substring(0, thePath.indexOf(sitePrefix));
		thePath = thePath.substring(thePath.indexOf(sitePrefix));
		
		// strip out the site prefix
		thePath = thePath.substring(thePath.indexOf(sitePrefix) + sitePrefix.length);
		
		// remove hash links
		var theHash = "";
		if (thePath.indexOf("#") > -1)
		{
			theHash = thePath.substring(thePath.indexOf("#"));
			thePath = thePath.substring(0, thePath.indexOf("#"));
		}
		
		// break out the individual pieces of the location
		var crumbs = thePath.split("/");
		var currentPath = sitePrefix;
		var crumbCount = 0;
		
		// add a "home" link
		// create a bread crumb container
		var breadCrumb = document.createElement("span");
		breadCrumb.setAttribute("class", "breadCrumb");
		
		// determine the crumb label
		// first use the default
		var crumbLabel = "Home";
		
		// second look for a generic label
		if ((breadCrumbLabels[sitePrefix] != null))
		{
			crumbLabel = breadCrumbLabels[sitePrefix];
		}
		
		// third look for a specific label
		if ((breadCrumbLabels[currentPath] != null))
		{
			crumbLabel = breadCrumbLabels[currentPath];
		}
		
		// add the text
		// check to see if there are any crumbs after this one
		if ((0 < crumbs.length) &&
			(crumbs[0] != "index.html") &&
			(crumbs[0] != ""))
		{
			// create a new link
			var linkTag = document.createElement("a");
			linkTag.href = theProtocol + theSite + currentPath;
			linkTag.appendChild(document.createTextNode(crumbLabel));
			breadCrumb.appendChild(linkTag);
		}
		else
		{
			// add the text together
			breadCrumb.appendChild(document.createTextNode(crumbLabel));
		}
		theBreadCrumbBar.appendChild(breadCrumb);
		
		// increment our count of crumbs
		crumbCount++;
		
		// loop through the crumbs
		for (var crumbIndex = 0; crumbIndex < crumbs.length; crumbIndex++)
		{
			// setup the current path
			currentPath += crumbs[crumbIndex];
			if (crumbIndex + 1 < crumbs.length)
			{
				currentPath += "/";
			}
			
			if ((crumbs[crumbIndex] != "") &&
				(crumbs[crumbIndex].indexOf("index.html") == -1))
			{
				// add this crumb to the list
				// create a bread crumb container
				var breadCrumb = document.createElement("span");
				breadCrumb.setAttribute("class", "breadCrumb");
				
				// add a greater than to the left hand side
				if (crumbCount > 0)
				{
					breadCrumb.appendChild(document.createTextNode(breadCrumbSeparator));
				}
				
				// determine the crumb label
				// first use the crumb itself
				var crumbLabel = crumbs[crumbIndex].replace(/_/g, " ").replace(".html", "").capitalize();
				
				// second look for a generic label
				if ((breadCrumbLabels[crumbs[crumbIndex]] != null))
				{
					crumbLabel = breadCrumbLabels[crumbs[crumbIndex]];
				}
				
				// third look for a specific label
				if ((breadCrumbLabels[currentPath] != null))
				{
					crumbLabel = breadCrumbLabels[currentPath];
				}
				
				// add the text
				// check to see if there are any crumbs after this one
				if ((crumbIndex + 1 < crumbs.length) &&
					(crumbs[crumbIndex + 1] != "index.html") &&
					(crumbs[crumbIndex + 1] != ""))
				{
					// create a new link
					var linkTag = document.createElement("a");
					linkTag.href = theProtocol + theSite + currentPath;
					linkTag.appendChild(document.createTextNode(crumbLabel));
					breadCrumb.appendChild(linkTag);
				}
				else
				{
					// add the text together
					breadCrumb.appendChild(document.createTextNode(crumbLabel));
				}
				theBreadCrumbBar.appendChild(breadCrumb);
				
				// increment our count of crumbs
				crumbCount++;
			}
		}
	}
	else if (attempts < 5)
	{
		// try again in a few seconds
		attempts++;
		setTimeout("displayBreadCrumbs(" + attempts + ");", 1000);
	}
}

// add a handy function to the string class
String.prototype.capitalize = function()
{
	return this.replace(/\w+/g, function(a)
	{
		return a.charAt(0).toUpperCase() + a.substr(1).toLowerCase();
	});
};

// set us up to display bread crumbs
displayBreadCrumbs(1);

