// onload dialog

$(function() {
	
	var n = $.cookie('snapndrag_mas_dialog_shown');
	
	if ( (n == null) || (n == 0) ) {
		$('#dialog').dialog({ autoOpen: true, modal: true, width: 500, position: "center", resizable: false,
			buttons: { 
				"Open App Store"  : function() { window.open("mas/");$(this).dialog("close"); },
				"No, Thanks" : function() { $(this).dialog("close"); }
			}
		});
		$('#dialog').addClass('dialog');
		$.cookie('snapndrag_mas_dialog_shown', 5);
	}
	else {
		$.cookie('snapndrag_mas_dialog_shown', n-1);
	}
});

// download dialog - create here but don't open

// $(function() {
// 	$('#dialog2').dialog({ autoOpen: false, modal: true, width: 500, position: "center", resizable: false,
// 		buttons: { 
// 			"Download Free Version"  : function() { document.location="/download/SnapNDrag.dmg"; $(this).dialog("close") },
// 			"Open App Store"  : function() {window.open("mas/");$(this).dialog("close");}
// 		}
// 	});
// 	$('#dialog2').addClass('dialog');
// } );

// add event handler to all download links

// $(function() {
// 	$('.download').click( function(event) { 
// 		event.preventDefault();
// 		$('#dialog2').dialog( "open" );
// 	} );
// })

