$(document).ready(function() {

$(".translayerbox").hide();

// ------------------------------------------------------
// ---------- die 2 transparenten boxen werden unsichtbar gemacht -------------------
// ------------------------------------------------------

//$(".transboxgross").hide();




	$('.headline_merzouga').click(function () {
		$(".translayerbox").hide();
		$(this).next().show();
		
	});
	
	
	$('.headline-produktionen').click(function () {
		$(".translayerbox").hide();
		$(this).next().show();
		
	});
	
	$('.headline_live').click(function () {
		$(".translayerbox").hide();
		$(this).next().show();
		
	});
	
		
	$('.closelayer').click(function () {
		$(".translayerbox").hide();
		
	});
	
		//$(this).next().show(); });
	//$('.transboxklein').mouseleave(function () {
	//	$(this).hide();	});

	


	


});

