// Menu Animation
$(document).ready(function(){
	$('#lf-menu li').has('ul').mouseenter(function(){
		var pos = $(this).position();	
		$('#lf-menu ul').css('left', pos.left);
		$(this).find('ul').stop(true, true).fadeIn(200);
		$(this).mouseleave(function(){
		$(this).find('ul').delay(200).fadeOut(200);
		});
	});
});

// Rahmen bei Events
$(document).ready(function(){
	$('.lf-event-box:last').css({
		border: 'none'
	});
});
