// js file for Biedenkapp

var dimmer;

$(document).ready(function(){
  	
  	// adds an overlay
    $("body").append("<div id='dim'><div id='frame'><iframe id='iframer' src='' border='0'></iframe><a href='#' class='close'>X</a></div></div>");
    $('#iframer').attr('src',$("#flipbox").attr("href")); 
    	
		$("#dim").css("height", $(document).height()); 
		
		$(".close").click(function(){
			$("#dim").fadeOut();
			return false;
	  });
	  
	  $("#dim").click(function(){
			$("#dim").fadeOut();
	  });
});

$(window).bind("resize", function(){
 	$("#dim").css("height", $(window).height());
});

// shows the overlay
function openFlipbox(){
   $("#dim").fadeIn();
}
