/*! jquery.warn */
(function($) {
	$('.warn').live('click', function(event) {
		event.preventDefault();
		return confirm('Are you sure?');
	});
})(jQuery);