
function page_load() {
	
	for (var i = 0; i < load_funcs.length; i++) {
		cmd = load_funcs[i] + "()";
		eval(cmd);
	
	
	}
	
}



//-----------------------------------------------------------
// style scripts --------------------------------------------

function quicklinks_on() {
	arrow_down = document.getElementById('nav_quicklinks_arrow-down');
	left = document.getElementById('nav_quicklinks_over-left');
	right = document.getElementById('nav_quicklinks_over-right');
	
	arrow_down.style.display = "block";
	left.style.display = "block";
	right.style.display = "block";
}

function quicklinks_off() {
	arrow_down = document.getElementById('nav_quicklinks_arrow-down');
	left = document.getElementById('nav_quicklinks_over-left');
	right = document.getElementById('nav_quicklinks_over-right');
	
	arrow_down.style.display = "none";
	left.style.display = "none";
	right.style.display = "none";
}

function alan1() {
	document.gotostate.submit();
	
	//alert('test');
}