window.addEvent('domready', function() {var myAccordion = new Accordion($('menu'), 'h2.menuheader', 'div.menucontent', {opacity:true,display: -1,duration: 300,alwaysHide: true,		onActive: function(menuheader, menucontent){			menuheader.setStyle('font-weight', 'bold');		},		onBackground: function(menuheader, menucontent){			menuheader.setStyle('font-weight', 'bold');		}});});window.addEvent('domready', function() {var myAccordion = new Accordion($('maincol'), 'h2.contentheader', 'div.content', {opacity:true,display: -1,duration: 300,alwaysHide: true,		onActive: function(contentheader, content){			contentheader.setStyle('font-weight', 'bold');		},		onBackground: function(contentheader, content){			contentheader.setStyle('font-weight', 'bold');		}});});		window.onscroll = function()		{			if( window.XMLHttpRequest ) { // IE 6 doesn't implement position fixed nicely...				if (document.documentElement.scrollTop > 90) {					$('leftcol').style.position = 'fixed'; 					$('leftcol').style.top = '0';				} else {					$('leftcol').style.position = 'absolute'; 					$('leftcol').style.top = 'auto';				}			}		}
