$(document).ready(function(){
    
    $(".lightbox").lightbox({
        fileLoadingImage : 'http://global.c-woermann.de/images/loading.gif',
        fileBottomNavCloseImage : 'http://global.c-woermann.de/images/closelabel.gif'
    }); 

	$('div.accordion h3').click(function() {
 
		$(this).next().toggle('fast');
 
		return false;
	}).next().hide();
	
	$('div.accordion h5').click(function() {
 
		$(this).next().toggle('fast');
 
		return false;
	}).next().hide();   

});

