var ResultsDisplay = ObjClass.extend({
	$html: null,
	init: function(conf)
	{
		this.$html = $(conf.$html);
	},
	setMsg: function(obj)
	{
		obj = $.extend({"class":"",text:""},obj);
		this.$html.removeClass("error ok");
		this.$html.addClass(obj["class"]);
		this.$html.html("<p>" + obj.text + "</p>");
		this.$html.slideDown("slow");
	},
	clearMsg: function()
	{
		this.$html.slideUp("slow");
	}
});
