hNavTab();

// hide all the lists
$("#smenu ul").hide();
$("#smenu a.smenuo").attr('class','smenuc');


// get the bredcrumb trail
var bc = $("#bc a");
// colour and open any in the trail
for (var i = 0; i < bc.length; i++) {
	var bchref = $(bc[i]).attr('href');
	bchref = bchref.replace(/\/index\.html/, "/");
	
	$("#smenu a[href='" + bchref + "']:first").attr('class','smenuo');
	$("#smenu a[href='" + bchref + "']:first").addClass('sectionopen');
	$("#smenu a[href='" + bchref + "']").parents().show();
}
// and this page too!
var locpath = location.pathname;
locpath = locpath.replace(/\/index\.html/, "/");
$("#smenu a[href='" + locpath + "']").siblings().show(); // open the siblings of the current page
$("#smenu a[href='" + locpath + "']").parents().show(); // open the parents of the current page
$("#smenu a[href='" + locpath + "']:last").attr('class','smenuo');
$("#smenu a[href='" + locpath + "']:last").addClass('sectionopen');


function smContent(){;loadImage("smcnt1","/learning/images/sidebar_library.jpg",160,90,"Library books","/corporate/library/");;loadImage("smcnt2","/learning/images/sidebar_library.jpg",160,90,"Library books","/corporate/library/");loadImage("smcnt3","/training/images/college1_160x90.jpg",160,90,"Training environment","/training/");}