// jQuery Demos

jQuery(document).ready(function() {
	jQuery("a.confirmexit").click(function() {
	return confirm("Are you sure you want to exit?")
	})
})