function StaticWidget(config)
{
	this.position = config.position;
	this.type = config.type;
	this.name = config.name;
	this.path = config.path;
	this.slug = config.slug;
}

StaticWidget.prototype.init = function()
{
	var widget = this;
	Loader.start();
	$.ajax({
		type:"html",
		url:this.path,
		success: function(content) {
			$('#' + widget.slug + "_content").innerHTML = content;
			Strike.show("#" + widget.slug);
			Loader.stop();
		}
	});
};

StaticWidget.prototype.unload = function()
{
	$('#' + this.slug + "_content").innerHTML = "";
};

