$(document).ready(function() {
	$(".ul_move").click(function(){
		$(this).next().slideToggle("slow");
	});
	$("#logo").css({cursor:"hand"});
	$("#logo").click(function(){
		document.location.href="http://www.heilsbronn.de";
	});
});

