//centering popup  
function centerPopup_wayneandmary(){  
//request data for centering  
var windowWidth_wayneandmary = document.documentElement.clientWidth;  
var windowHeight_wayneandmary = document.documentElement.clientHeight;  
var popupHeight_wayneandmary = $("#popup_wayneandmary").height();  
var popupWidth_wayneandmary = $("#popup_wayneandmary").width();  
//centering  
$("#popup_wayneandmary").css({  
"position": "absolute",  
"top": windowHeight_wayneandmary/2-popupHeight_wayneandmary/2,  
"left": "508px"  
});  
//only need force for IE6  
  
$("#popup_background").css({  
"height": windowHeight_wayneandmary  
});  
  
}  
	$(document).ready(function() {
  		$('popup_wayneandmary').hide();
		$('popup_background').hide();

		$('a#show_popup_wayneandmary').click(function(){
		centerPopup_wayneandmary();
		$('#popup_wayneandmary').fadeIn('slow');
		$('#popup_background').fadeIn('slow');
		});
		
		$('a#close_popup_wayneandmary').click(function(){
		centerPopup_wayneandmary();
		$('#popup_wayneandmary').fadeOut('slow');
		$('#popup_background').fadeOut('slow');
		});
		
		$("#popup_background").click(function(){  
		$('#popup_wayneandmary').fadeOut('slow');
		$('#popup_background').fadeOut('slow');  
		});
		
		$(document).keypress(function(e){  
		if(e.keyCode==27){  
		$('#popup_wayneandmary').fadeOut('slow');
		$('#popup_background').fadeOut('slow'); 
		}  
		});  
		
	});