function index_behaviors() {
	
	if (!document.getElementById) return;
	if (!document.getElementsByTagName) return;
	
	var node_a = document.getElementsByTagName("div");
	for (var i = 0; i < node_a.length; i++) {
		
		var id = node_a[i].getAttribute("id");
		if (id != null) {
			
			switch (id) {
				
				case "mid_tbl_1a":
					node_a[i].onmouseover = activate_1a;
					break;
					
				case "mid_tbl_1b":
					node_a[i].onmouseover = activate_1b;
					break;
					
				case "mid_tbl_1c":
					node_a[i].onmouseover = activate_1c;
					break;
					
				case "mid_tbl_1d":
					node_a[i].onmouseover = activate_1d;
					break;
					
				case "mid_tbl_1e":
					node_a[i].onmouseover = activate_1e;
					break;
					
				default:
					break;
			}
		}
	}
}

function activate_1a() {
	activate("smallbus");
}

function activate_1b() {
	activate("itcompany");
}

function activate_1c() {
	activate("costeffect");
}

function activate_1d() {
	activate("services");
}

function activate_1e() {
	activate("strengths");
}

function activate(id) {
	
	deactivate();
	
	var node = document.getElementById(id);
	if (node != null) {
		
		node.style.display = "block";
	}
}

function deactivate() {
	
	var node_a = document.getElementsByTagName("div");
	for (var i = 0; i < node_a.length; i++) {
		
		var id = node_a[i].getAttribute("id");
		if (id != null) {
			
			switch (id) {
				
				case "smallbus":
				case "itcompany":
				case "costeffect":
				case "services":
				case "strengths":
					node_a[i].style.display = "none";
					break;
					
				default:
					break;
			}
		}
	}
}

//Ensure that the function to attach event handlers is loaded with the window
addLoadEvent(index_behaviors);
