$(document).ready(function() {
	//Hide no script message
	$('#noScript').hide();
	//Hide modalw window
	$('#basic-modal-content').hide();
	//Check for $SESSION['Region'] val to determine if first showing of page
	$.post('checkRegion.php',function(data) {
		if(data.region != 1) {
			// Load dialog on page load if region empty, so first view
			$('#basic-modal-content').modal();
			$("a").click(function(){
				$('#basic-modal-content').hide('slow');
			}); 
		};
	},"json");	
});

