$(document).ready(function() {

 /* $('.leseprobe a').on("click", test);
  
  function test(){
	alert("qwer");
  
  } 'opacity' : 0.3,
  */
  		$('<div>').css({'left': 0,'position': 'fixed','top': 0,'z-index': 150, 'display':'none'}).width(window.innerWidth).height(window.innerHeight).attr('id','overlay').appendTo('body');
  		$('<div>').css({'right': '15px','position': 'fixed','top': '15px','cursor':'pointer','fontWeight':'bold','text-transform':'uppercase','font-size':'14px'}).attr('id','close').html('Leseprobe<br>Schließen').addClass('content').appendTo('#overlay');
		

		
		
		$('<iframe>').css({'top':'1px', 'left':'50%', 'margin-left':'-43%', 'position': 'fixed','z-index': 160, 'display':'none', 'width':'86%', 'height':'95%', 'border':'none'}).attr('id','pfContent').attr('scrolling','no').attr('allowtransparency','true').appendTo('body');
		
		$(".leseprobe").on("click", function(event) {
		event.preventDefault();
		var link12 = $(this).attr('href');

		
		
		$('#overlay').css({'display':'block'});
		$('#pfContent').css({'display':'block'});
		
		//$('#pfContent').load('http://nds-verlag.de/js/out.php?url='+link12);
		
		$('#pfContent').attr('src',link12)
		
	});

	$("#overlay").on("click", function(event) {
	
		$('#overlay').css({'display':'none'});
		$('#pfContent').css({'display':'none'});
		//$('#pfContent').html('');
		
	});
	$(document).keyup(function(e) {

	if (e.keyCode == 27) {
		$('#overlay').css({'display':'none'});
		$('#pfContent').css({'display':'none'});
		}   // esc
	});

  
});
