$(document).ready(function() {
    $('.confirm').click(function() {
	return confirm($(this).attr('question'));
    });
});
