window.addEvent('domready', function(){
    var accordion = new Accordion('h3.atStart', 'div.atStart', {
        opacity: false,
		duration: 150,
		height: true,
        onActive: function(toggler, element){
            toggler.setStyle('color', '#377CE0');
			toggler.addEvents({
				mouseenter: function() {
					this.setStyles({
						textDecoration: 'underline'
					});
				},
				mouseleave: function() {
					this.setStyles({
						textDecoration: 'none'
					});
				}
			});
        },        
        onBackground: function(toggler, element){
            toggler.setStyle('color', '#222');
			toggler.addEvents({
				mouseenter: function() {
					this.setStyles({
						textDecoration: 'underline'
					});
				},
				mouseleave: function() {
					this.setStyles({
						textDecoration: 'none'
					});
				}
			});
        }
    }, $('accordion'));
    
});