/*
jQuery(document).ready(function(){

    jQuery(function() {
            jQuery("#leistungen").accordion({header: 'p.title'});
    });

});
*/

jQuery(document).ready(function(){
    jQuery('#leistungen p.title').css("cursor","pointer");

	jQuery('#leistungen p.title').click(function() {
        jQuery(this).next().toggle('slow');
		return false;
	}).next().hide();
});

