General = function() {};

General.showMessage = function(cont, msg, cls) {
	cont = $(cont);
	cont.hide();
	cont.html('<label class="' + cls + '">' + msg + '</label>');
	cont.fadeIn();
};
