// JavaScript Document

 $(function(){
    // zet "trigger" op beeldjes met class "showmoreinfo"
    $("h3.showmoreinfo").click(
        function() {
			if ( $(this).next('div.moreinfo').is(':visible') ) {
				$(this).next('div.moreinfo').hide();
				$(this).find('img').attr('src', '../../_images/arrow-non-active.gif');
			}
			else {
				$(this).next('div.moreinfo').show();
				$(this).find('img').attr('src', '../../_images/ArrowActive.gif');
			}
        }
    );
 });
 