$(document).ready(function () {
	$("#content").prepend(container);

	$("#product").ajaxForm(
  {
		success: function () {
    	updateShoppingCardIfExists();
			confirm("Verder winkelen?", function () {
				window.location.href = '/index.php?op=viewCard';
			});
		return false;
		}
	}); 
});


var container = '<div id="besteldialog"><div class="message"></div><div class="buttons"><div class="no">Naar de winkelwagen</div><div class="yes simplemodal-close">Ja</div></div></div>';


function confirm(message, callback) {
	$('#besteldialog').modal({
		position: ["50%",],
		overlayId: 'confirm-overlay',
		containerId: 'confirm-container', 
		onShow: function (dialog) {
			$('.message', dialog.data[0]).append(message);

			// if the user clicks "yes"
			$('.no', dialog.data[0]).click(function () {
				// call the callback
				if ($.isFunction(callback)) {
					callback.apply();
				}
				// close the dialog
				$.modal.close();
			});
		}
	});
}

