$(document).ready( function() {
	$('.formulare dd').hide();
	$('.formulare dt img.toggler').toggle (
			function() {
				$(this).attr('src', 'img/arrow-down.png');
				$(this).parent().next('dd').slideDown('fast');
			},
			function() {
				$(this).attr('src', 'img/arrow-right.png');
				$(this).parent().next('dd').slideUp('fast');				
			});
});




