window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('shirts_accordion'), 'div.shirts_toggler', 'div.shirts_element', {
		alwaysHide: true,
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('background-image', 'url("images/style_arrow_red.png")');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('background-image', 'url("images/style_arrow_white.png")');
		}
	});
});