window.addEvent('domready', function() {
	var accordion = new Accordion('h4.atStart', 'ul.atStart', {
	opacity: true,
	onActive: function(toggler, element){
		//toggler.setStyle('color', '#ff3300');
	},
 
	onBackground: function(toggler, element){
		//toggler.setStyle('color', '#222');
	}
	}, $('blockStat'));
	
	
	$$('#blockStat a').each(function(item){
		item.addEvent('click', function(e) {
			e = new Event(e).stop();
			window.open(this.href,"Statistiques","menubar=no, status=no, scrollbars=yes, menubar=no, resizable=yes");
		});
	});
});

