window.addEvent('domready', function(){
	var accordion = new Accordion('h3.atStart', 'div.atStart', {
		opacity: true,
		alwaysHide: true,
		display: 4,
		onActive: function(toggler, element){
			toggler.setStyle('backgroundColor', '#71001C');
		},
	 
		onBackground: function(toggler, element){
			toggler.setStyle('backgroundColor', '#4F1000');
		}
	}, $('accordion'));
});

function sh(x) {
	var d = document.getElementById(x);
	if(d.style.display=='block'){
		d.style.display='none';
	}else{
		d.style.display='block';
	}
}
function show(x) {
	var d = document.getElementById(x);
	d.style.display='block';
}
function hide(x) {
	var d = document.getElementById(x);
	d.style.display='none';
}