properties.images.backgroundImage=
{
	"tag":"img",
	"attributes":
	{
		"id":"images_background",
		"src":"images/jsconnect/background.png"
	},
	"styles":
	{
		"position":"absolute",
		"top":"0px",
		"left":"0px"
	}
};
function BackgroundImage(id)
{
	this.image = document.getElementById(id);
	this.update = function()
	{
		this.image.src = "images/jsconnect/"+themes.getCurrent().path+"background.png";
		this.image.style.width = String(properties.map.getWidth())+"px";
		this.image.style.height = String(properties.map.getHeight())+"px";
	}
}
