// JavaScript Document
$(document).ready (function () {
	$('.sessionEnroll').click(function()
	{
		return confirm('After enrolling, you will be registerd for this seminar. You will not be able to undo this registration. Are you sure you want to continue?');
	});
});

/*$(document).ready (function () {
	$('.sessionEnroll').confirm({
	  msg:'After enrolling, you will be registerd for this seminar. You will not be able to undo this registration. Are you sure you want to continue?',
	  timeout:8000,
	  dialogShow:'fadeIn',
	  dialogSpeed:'slow',
	  buttons: {
		wrapper:'<button></button>',
		separator:'  '
	  }  
	});
});*/