var deThisSubsite = $("#collection UL LI.level1.open A");
var deThisSubsiteName = deThisSubsite.html();
var deThisSubsiteLink = deThisSubsite.attr("href");

var deThisSection = $("#lawguide UL.open LI.level2 A.open");
var deThisSectionName = deThisSection.html();
var deThisSectionLink = deThisSection.attr("href");

var deThisArticleFolder = $("#lawguide UL.open LI.level3 A.open");
var deThisArticleFolderName = deThisArticleFolder.html();

var deThisArticle = $("#lawguide UL.open LI.level4 A.selected");
var deThisArticleName = deThisArticle.html();

if (window.location.href.indexOf('base:subsite') > 0 || window.location.href.indexOf('event=subsite') > 0) {
	var deThisSnailTrail = deThisSubsiteName;
}
else if (window.location.href.indexOf('base:section') > 0 || window.location.href.indexOf('event=section') > 0) {
	var deThisSnailTrail = '<a href="'+deThisSubsiteLink+'">'+deThisSubsiteName+'</a> &gt; ' + deThisSectionName;
}
else if (window.location.href.indexOf('base:article') > 0 || window.location.href.indexOf('event=article') > 0) {
	var deThisSnailTrail = '<a href="'+deThisSubsiteLink+'">'+deThisSubsiteName+'</a> &gt; <a href="'+deThisSectionLink+'">'+deThisSectionName+'</a> &gt; ' + deThisArticleFolderName;
	if (deThisArticleFolderName.toLowerCase() != deThisArticleName.toLowerCase() && deThisArticleName != "Creating a health &amp; safety policy") {
		deThisSnailTrail = '<a href="'+deThisSubsiteLink+'">'+deThisSubsiteName+'</a> &gt; <a href="'+deThisSectionLink+'">'+deThisSectionName+'</a> &gt; ' + deThisArticleFolderName + ' &gt; ' +  deThisArticleName;
	}
}

document.write('<a href="index.cfm?event=base:cpage&c=cpage_lawguide">householdlaw guide</a> &gt; ' + deThisSnailTrail);


