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');
        }
    });
	
	if($$('div.inner-content-contenitor')!=null){
		$$('div.inner-content-contenitor').setStyle('display','block');
	}
	
	if($('maincol').getElement('span[id^=more-]')!=null){
		$('maincol').getElement('span[id^=more-]').getParent().setStyle('height', '0px');
    }
	if($('maincol').getElement('div.content')!=null){
		var myAccordionContent = 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');
			}
		});
	}
});
