function ask(question, target) {
	if(confirm(question)) {
		location.href = target;
	}
}

function askFn(question, fn) {
	if(confirm(question)) {
		eval(fn);
	}
}

jQuery(document).ready(function() {
	// ===========
	// = Message =
	// ===========
	if($('#message').length) {
		$('#message').delay(4000).slideUp(300);
	}
});
