jQuery(document).ready(function () {
							
window.alert=function(msg){

		// example of calling the confirm function
		// you must use a callback function to perform the "yes" action
		jQueryAlert(msg);
}

});

function jQueryAlert(message) {
	jQuery('#alert').modal({
		closeHTML:'<a href="#" title="Close" class="modal-close">x</a>',
		position: ["20%",],
		overlayId:'confirm-overlay',
		containerId:'confirm-container', 
		onShow: function (dialog) {
			jQuery('.message', dialog.data[0]).append(message.replace('cart', 'Order'));
		}
	});
}
