// Message HTML (note that CSS for formatting needs to be in stylesheet)
var i = "<div id='pna'><p class='title'>Page Not Available</p><p>We are in the process of building our new web site and the page you requested is not available yet.  Please check back soon.</p></div>";

// Display message for all links that have an HREF of #
$(document).ready(function(){
	$('#page-wrapper').after(i);
	$('a[href=#]').click(function() {
		$('#pna').lightbox_me({ centered: true });
		return false;
	});
});

