	var path = "" + document.location.href.toLowerCase();
	var arrPath = path.split("/");
	var folder = arrPath[arrPath.length - 2].toLowerCase();
	var folderMatch = "ir35servicesaccountantsrecruitmentcontractorsproject_companiestupecontract_maintenanceemployersstartupstupe";
	var section;
	var image;
	var level;
	var alt;

	switch(folder){
		case "about":
			section = "about";
			level = 2;
			image = "../images/sec_lbl_about.gif";
			alt = "about Lawspeed";
			break;
		case "press":
			section = "press";
			level = 2;
			image = "../images/sec_lbl_press.gif";
			alt = "press";
			break;	
		case "orders":
			section = "order";
			level = 2;
			image = "../images/sec_lbl_orders.gif";
			alt = "orders";
			break;
		case "links":
			section = "links";
			level = 2;
			image = "../images/sec_lbl_links.gif";
			alt = "links";
			break;
		case "risk_control":		
			section = "risk_control";
			level = 2;
			image = "../images/sec_lbl_risk_control.gif";
			alt = "risk control";
			break;
		case "contact_us":		
			section = "contact";
			level = 2;
			image = "../images/sec_lbl_contact_us.gif";
			alt = "contact us";
			break;
		case "home":
			section = "home";
			level = 2;
			image = "../images/sec_lbl_home_content.gif";
			alt = "home";
			break;
		default:
			section = "home";
			level = 1;
			image = "../images/sec_lbl_home.gif";
			alt = "home";
			break;	
	}
	if(folderMatch.indexOf(folder) != -1){
		section = "services";
		image = "../images/sec_lbl_services.gif";
		alt = "services";
		level = 2;
	}
	
	function writeSectionImage(){
	
		document.write("<img src='" + image + "' alt='" + alt + "'>");
	}