
jQuery(function ($) {
	// basic
	$('#basic-modal a.demo').click(function (e) {
		e.preventDefault();
		$('#basic-modal-content').modal();
	});
	
	

	
	

	
	

	// confirm
	$('#confirm-dialog a.demo').click(function (e) {
		e.preventDefault();

		// example of calling the confirm function
		// you must use a callback function to perform the "yes" action
		confirm("", function () {
			window.location.href = '';
		});
	});
});



