window.addEvent('domready', function() {

	var show = (window.location.href.contains('contact')) ? 2 : 0;

	//init the accordion
	new Accordion($('order_delivery_info'), $$('#order_delivery_info .toggler'), $$('#order_delivery_info .content'), {
		opacity: false,
		show: show,
		onActive: function(toggler, element){ toggler.morph('.header4'); toggler.setStyle('backgroundImage', 'url(images/down_arrow.gif)'); },
                onBackground: function(toggler, element){ toggler.morph('.header3'); toggler.setStyle('backgroundImage', 'url(images/right_arrow.gif)'); }
	})

});

