$(document).ready(function() {
	var interstitial = $('#healthbeat_interstitial').dialog({
		dialogClass: "interstitial_dialog",
		draggable: false,
		height: 'auto',
		modal: true,
		overlay: { 
			opacity: 0.5, 
			background: "black" 
		},
		resizable: false,
		width: '278',
		open: function(jkh, modal) {
			$(".interstitial_dialog .ui-resizable-handle").remove();
			$('.ui-dialog-overlay').click(function() {
				show_slidebox();
				$("#healthbeat_interstitial").dialog("close");
				$.getJSON('/index.php', {maybelater: "set"}, function(json){
					//console.log('Data: ' + json);
				});
			});
			$(".interstitial_dialog .close_modal").click(function() {
				show_slidebox();
				$(interstitial).dialog("close");
				$.getJSON('/index.php', {maybelater: "set"}, function(json){
					//console.log('Data: ' + json);
				});
				return false;
			});
			$(".interstitial_dialog .dismiss_modal").click(function() {
				show_slidebox();
				$.getJSON('/index.php', {maybelater: "set"}, function(json){
					//console.log('Data: ' + json);
				});

				$(interstitial).dialog("close");
				return false;
			});
		}
		
	});
});
