// jQuery is required

// When the document is ready
$(document).ready(function(){
	
	$(".confirm").bind("click", function() {
		
		return areYouSure();
	})
		
});


function areYouSure() {
	
	return confirm('Are you Sure?');
	
}