

function toggleon(item) {
	item = document.getElementById(item);
	item.style.display = "block";
}
function toggleoff(item) {
	item = document.getElementById(item);
	item.style.display = "none";
}


$(document).ready(function() {			

	top_nav = document.getElementById("jsddm").children;
	top_nav[0].className = "tabPersonal";
	top_nav[1].className = "tabBusiness";
	top_nav[2].className = "tabTrust";
	top_nav[3].className = "tabLocations";
	
	
	document.getElementById("jsddm").children[4].style.display = "none";
	for(i=4;i<top_nav.length;i++)
		top_nav[i].style.display = "none";
});
	
