document.observe('dom:loaded',function(event){
	// Check for an initialize any accordions
	if ($('accordion')) {
		var verticalAccordion = new accordion('accordion');
		verticalAccordion.activate($$('#accordion .accordion_toggle')[0]);
	};
	if ($('shortcut-box')) {
		$('shortcut-box').observe('change',function(event){
			var target = $F(Event.element(event));
			if (target != 'shortcuts') { window.location = $(target+'.php').down('a').href; }
		});
	};
});

function PageAfterLoad() {
	if(document.getElementById('divWhat')) { document.getElementById('divWhat').style.display='block'; }
}
