// Get the Breadcrumb back link

function getBackLink(){
//Write the back link if the redirecting page was the projects page
// Look for a cookie from the current level, up the tree
	for (i=_myLevel-1; i>0; i--){
		if (undefined != readCookie(backLinkCookie + i)){
			//Read the cookie
			var sLink = ""
			sLink = readCookie (backLinkCookie + i)
			//Get the name of the page (its at the end of the cookie seperated by a pipe)
			var temp = new Array();
			temp = sLink.split('|');
			//Store the page name
			var sName = temp[1]
			sLink = temp[0]
			
			sLink = temp[2] + " &gt; <a id='backlink' href='" + sLink + "'>" + sName + "</a>"
			document.getElementById("backlink_c").innerHTML = sLink
		}
	}
}

jQuery(document).ready(function(){getBackLink();});