window.addEvent('domready', function(){

	if ($('accordion')) {
		var accordion = new Accordion('h3.atStart', 'div.atStart', {
			opacity: true,
			alwaysHide:true,
			display:-1,
			onActive: function(toggler, element){
				toggler.setStyle('color', '#b3101d');
			},
 
			onBackground: function(toggler, element){
				toggler.setStyle('color', '#e6a146');
			}
		}, $('accordion'));
	}
	
	if($('search'))
	{
		$('search').addEvent('click', function() {
			$('search').value = "";
		});
	}

});
