// Copyright 2010 by Magnus Health Technology
// Author: the dude
$(function () {
	$(".blockUI").each(function () {
	}).click(function () {
		$.blockUI({message: "<h2>Loading...</h2>"});
	});
});

