//--- Rip out values from cookie-->
	var position
	var length
	var strTemp = (location.href);
	position = strTemp.indexOf("pages");
	length = (strTemp.length);
	strTemp = strTemp.substring(position+6,length-4);
	strIntro = "Welcome "
	if (document.cookie){
		var cookieString = unescape(document.cookie);
		cookie = cookieString.split("$");
		strIntro = "Welcome back " + cookie[1]
	}
	document.write("<span class=\"breadcrumb\">" + strIntro + " you are here: " + strTemp + "</span>");

// --- Stop Hiding --->
