//if javascript is enabled
window.onload=load

//checks that the methods exist before calling them
function load() {
	
	if(typeof menuLoad == 'function') {
	menuLoad();
	}
	
	if(typeof tabLoad == 'function') {
	 tabLoad();
	}
}