// JavaScript Document

window.addEvent("domready", function(){
	var accordion = new Accordion('h3.atStart', 'div.atStart', {
		display: currentCategory,
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#fff');
			toggler.setStyle('background-image', 'url(images/menuArrowSelected.jpg)');
		},
		
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#525686');
			toggler.setStyle('background-image', 'url(images/menuArrow.jpg)');
		}
	}, $('menu'));
	
	bodyHeight = $('body').getStyle('height').toInt();
	shadowTopHeight = $('shadowTop').getStyle('height').toInt();
	shadowBottomHeight = $('shadowBottom').getStyle('height').toInt();
	
	if(window.ie6){
		$('shadowRight').setStyle('height', ((bodyHeight + 11) + 'px'));
	}else{
		$('shadowRight').setStyle('height', ((bodyHeight + 18) + 'px'));
	}
});
