var Loader = ObjClass.extend({
	$html: null,
	init: function(conf)
	{
		this.$html = $(conf.$html);
	},
	on: function()
	{
		this.$html.show();
	},
	off: function()
	{
		this.$html.hide();
	}
});
