$(function() {
	
	  $(".showlizenzen").click(function(){
		  
		  var httproot = document.getElementById("http_pfad").innerHTML;

		  $.openPopupLayer({
			    name: "lizenzen",
			    width: 600,
			    url: httproot + "/lizenzen.php"
			});
		  
	  });
	  
	  
	  	  $(".showtophits").click(function(){
		  
		  var httproot = document.getElementById("http_pfad").innerHTML;

		  $.openPopupLayer({
			    name: "tophits",
			    width: 665,
			    url: httproot + "/tophits/tophits.php"
			});
		  
	  });
	  
	  $(".showlegalinfo").click(function(){
		  
		  var httproot = document.getElementById("http_pfad").innerHTML;

		  $.openPopupLayer({
			    name: "rechtliches",
			    width: 600,
			    url: httproot + "/rechtsinformationen.php"
			});
		  
	  });
	  
	  
	  $(".showWunschbox").click(function(){
		  
		  var httproot = document.getElementById("http_pfad").innerHTML;

		  $.openPopupLayer({
			    name: "wunschbox",
			    width: 600,
			    url: httproot + "/wunschbox.php"
			});
		  
	  });
	  
	  

});

