function really(text) {
	if (confirm(text))	{ return true; } else { return false; }
}

// hide flash message
$("div.flash").livequery(function () {
	var el = $(this);
	el.prepend(
		$('<span class="close" title="Close">Close</span>').click(
			function () {
				el.animate({"opacity": 0}, 400);
				el.slideUp();
			}
		)
	);
//	var el = $(this);
//	el.click(
//		function () {
//			el.animate({"opacity": 0}, 400);
//			el.slideUp();
//		}
//	);
});

//$(".jsHide").livequery(function () {
//	$(this).addClass('no');
//});
