/*$(document).ready(


	function() {
		$(".punkt").hover(
			function() {
				var thisSubMenu = $(this).find(".sub_menu");
				thisSubMenu.css("left", "0");
				thisSubMenu.show();
				thisSubMenu.animate({left: + 192 + "px"}, 400);
			},
			function() {
				var thisSubMenu = $(this).find(".sub_menu");
				thisSubMenu.animate({left: "hide"}, 400);
			}
		);
	}
);*/


