var ns4 = document.layers;
var ns6 = document.getElementById && !document.all;
var ie4 = document.all;
var el = "";
var text = "";

function initBildtext() {
	if( ie4 ) {
		el = document.all.bildtext;
	}
	else if( ns4 ) {
		el = document.bildtext;
	}
	else if( ns6 ) {
		el = document.getElementById("bildtext");
	}
	
	text = new Array(8);
	text[0] = "";
	text[1] = "";
	text[2] = "Ateljé Brännorna";
	text[3] = "Kontakt/Hitta";
	text[4] = "Målningar - Lena Viredius";
	text[5] = "Unikat - Thomas Alexanderson";
	text[6] = "Bruksgods - Thomas Alexanderson";
	text[7] = "Nyheter";
	text[8] = "Utställningar";
	text[9] = "Återförsäljare & Länkar";	
}

function showText( id ) {
	el.innerHTML = text[id];
}
