// Ajax handlers
$(document).ready(function(){

	$("a.replace_delete").click(function(){
		return confirm('Are you sure you want to delete this event?'); 
	})

	$("a.replace_approve").click(function(){
		return confirm('Are you sure you want to approve this event?'); 
	})

});