window.addEvent('domready', function() {
var myAccordion = new Accordion($('post'), 'h3.contentheader', 'div.post', {
opacity:true,
display: -1,
duration: 300,
alwaysHide: true,

		onActive: function(contentheader, post){
			contentheader.setStyle('color', '#3f2b10');
		},
		onBackground: function(contentheader, post){
			contentheader.setStyle('color', '#5d3d1c');
		}
});
});
