window.addEvent('domready', function() {
	
	var myAccordion = new Accordion($('tourAccordion'), 'span.tourMore', 'div.tourInfo', {
		display: false,
		show: false,
		alwaysHide: true,
		opacity: false,
		onActive: function(tourMore, tourInfo) {
			var parent = tourMore.getParent('.tourTitle');
			if (parent.hasClass('pastGig')) {
				parent.getElement('img').setProperty('src', '/layout/images/smallArrowsInverseGrey.png');
			} else {
				parent.getElement('img').setProperty('src', '/layout/images/smallArrowsInverse.png');
			}
		},
		onBackground: function(tourMore, tourInfo){
			var parent = tourMore.getParent('.tourTitle');
			if (parent.hasClass('pastGig')) {
				parent.getElement('img').setProperty('src', '/layout/images/smallArrowsNormalGrey.png');
			} else {
				parent.getElement('img').setProperty('src', '/layout/images/smallArrowsNormal.png');
			}
		}
	});

});
