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

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

// add event handler to all download links

$(function() {
	$('#YemuZip-download').click( function(event) { 
		event.preventDefault();
		$('#dialog-yemuzip-download').dialog( "open" );
	} );
})
