$(document).ready(function() {
	$('a[rel="external"], #attractions-menu a').click(function() {
        window.open( $(this).attr('href') );
        return false;
	});
	
	// zebra striping
	$('#p-sub #copy table tr:even').addClass('even');
	
	// display an alert message for pages that are under construction.
	$('a.under_construction').click(function() {
		alert('This page is currently under construction.');
	});		

});