
$(document).ready(function() {
	
  $(".marken li").mouseenter(function(){
	  $(this).find(".marken_box").fadeIn(200);
  }).mouseleave(function(){
	  $(this).find(".marken_box").fadeOut(200);
  });
  
  
  $(".marken_box").click(function(){
	  window.location.href = $(this).prev("a").attr("href");
  });
});
