jQuery(function(){
	$('.standort, .first').mouseenter(function(){
		$(this).addClass('active');
	});

	$('.standort, .first').mouseleave(function(){
		$(this).removeClass('active');
	});

	$('.standort_d, .first').mouseenter(function(){
		$(this).addClass('active');
	});

	$('.standort_d, .first').mouseleave(function(){
		$(this).removeClass('active');
	});


	$('.deutschland').click(function(){
		$('.deutschlandkarte').toggle();
		if( $('.deutschlandkarte:visible').length > 0 )
		{
			$('.standort_d span.first').each(function(){
				$(this).css('width',$(this).width());
			});
		}
	});

	$('.close').click(function(){
		$('.deutschlandkarte').hide();
	});

	$('.standort span.first:not(.standort span.first.right)').each(function(){
		$(this).css('width',$(this).width());
	});

	$('.standort span.first.right').each(function(){
		$(this).css('width',$(this).width());
		$(this).css('left',($(this).width()+10)*-1);
	});
});
