//skapar lista till bilder

	var Bilder = new Array();

	Bilder.push("../images/300/feetchrome300.jpg");

	Bilder.push("../images/300/feetblack300.jpg");

	Bilder.push("../images/300/feetchrome300.jpg");

	Bilder.push("../images/300/feet_suspension300.jpg");

	Bilder.push("../images/300/feet_steelball300.jpg");

	Bilder.push("../images/300/feetonrack.jpg");

	Bilder.push("../images/300/feet_sceleton.jpg");



//skapar lista för bildtext

	var BildText=new Array();

	BildText.push("The Feet of Silence system has been designed with the objective of affording today's Audio/Video systems the optimal working environment they need in order to deliver the realism and musicality which combine to make listening a truly High-End experience.");

	BildText.push("Black anodized base with high gloss polish attachments. The chosen material of aluminium and the cylindrical form contribute to a rigidity, which reduces the amplitude of the vibrations.");

	BildText.push("This version comes with all parts in high gloss finish. All the details of the design have a critical function, which  contribute to Feet of Silence's total performance");

	BildText.push("The Suspension consists of purpose moulded age resistant O-rings. The suspension action and freedom of movement in both the vertical and horizontal planes provide an extremely effective isolation of the vibration absorber from externally generated vibrations.");

	BildText.push("The Ball on top of the vibration absorber is fixed by viscous-elastic glue to the absorbent and functions as a conveyor of the internal vibrations to the absorbent. The ball form has been picked because its uniformity has only one single resonant frequency and therefore will not emit other unwanted resonances.");

	BildText.push("Naturally, our Feet of Silence can be used as an option on both the fixed and the suspended shelves. This will further improve performance.");

	BildText.push("The sceleton view allows us to see the ingenious construction and gives us the understanding how much research and development has gone into this product. There is no woddoo here, just solid technology and engineering.");



//funktion som visar bild enligt arrayn i tabellcell

//plus tillhörande text med hjälp av getElementById och innerHTML



function visaBild(vilken) {

	document.feet.src=Bilder[vilken]

	document.getElementById("textLager").innerHTML=BildText[vilken];	

}

function startText(){

	document.getElementById("textLager").innerHTML=BildText[0];			

}