window.onload = function() {
	if ($$('.accordion').length > 0) {
		//create our Accordion instance
		var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
			duration: 100,
			display: false,
			opacity: false,
			onActive: function(toggler, element){
				toggler.setStyle('color', '#41464D');
			},
			onBackground: function(toggler, element){
				toggler.setStyle('color', '#528CE0');
			}
		});
		myAccordion.togglers.each(function(toggler){
			toggler.addEvent('mouseover',function(){
				this.fireEvent('click');
			});
		});

	}
};
function renewCaptcha() {
	$('#captcha').replaceWith('<img src="/captcha.php?r='+Math.random()+'" alt="Verificatiecode" id="captcha" />');
}
