function bestellen() {
	
		$(".manio_bestell").toggle(
		function () {
		$("#manio_bestellform").css({'display' : 'block'});
		},
		function () {
		$("#manio_bestellform").css({'display' : 'none'});
		}
		);

}


$(document).ready(
	function() {
		bestellen();
	});