var speed = 1000;


jQuery(document).ready(function(){
	//jQuery("#button").click(function () {
	//	jQuery(".oeffnungszeiten").fadeToggle("slow", "linear");
	//});

jQuery('#button').click(function() {
  jQuery('.oeffnungszeiten').slideToggle({
    opacity: 0,
    height: 'toggle',
     width: '100%'
  }, 5000, function() {
    // Animation complete.
  });
});


});

