var bildvariablen = new Array();
function preload()
{
	for (var i=0; i < preload.arguments.length; i++)
	{
		var img = new Image();
		img.src = preload.arguments[i];
		bildvariablen[i] = img;
	}
}

function SetShopStartText (mtext, mclass)
{
	document.getElementById("shop_start_text").firstChild.data = mtext;
	document.getElementById("div_shop_start_text").className = mclass;
}


function SetShopBild (msrc, mheight, mwidth, malt, mclass)
{
	document.getElementById("img_shop_bild").src = msrc;
	document.getElementById("img_shop_bild").height = mheight;
	document.getElementById("img_shop_bild").width = mwidth;
	document.getElementById("img_shop_bild").alt = malt;
	document.getElementById("img_shop_bild").className = mclass;
}
