//skapar lista till bilder

	var Bilder = new Array();

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

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

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

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

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

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

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



//skapar lista för bildtext

	var BildText=new Array();

	BildText.push("Disc of Silence is an isolation foot with same construction criteria as the Feet of Silence, widely praised by the critics. The criteria is to use a isolation medium that is as effective as possible, as close as possible to the apparatus, in order to avoid propagation of frame borne vibrations and resonances into the apparatus.");

	BildText.push("By using an effective isolation medium and a small and stable physical body that upholds the apparatus, even the negative influence by the airborne vibrations (music) and internal vibrations of the apparatus are reduced.");

	BildText.push("The criteria is to use an isolation medium that is as effective as possible, as close as possible to the apparatus, in order to avoid propagation of frame borne vibrations and resonances into the apparatus.");

	BildText.push("Set of three discs can handle a load of 5kg  to 35 kg or up to 70 kg with all tension springs mounted. Set of 4 disks are also delivered thus allowing a load up to 90 kg.");

	BildText.push("One can improve the performance in two further steps if so desired, namely by using spring suspended shelf's and/or some of our isolation feet between the shelf and the apparatus.");

	BildText.push("The adjusting screw permits leveling of apparatus with uneven weight distribution. The cork covered adjustment screw  permits a secure and scratchproof  contact surface with the apparatus, and further reduces resonances and vibrations.");

	BildText.push("The centre hub is suspended and isolated from the outer aluminum cylinder trough three or six tensions springs depending on the desired weight that is placed on the Disc.  The resonance frequency of the tension springs is about 5 Hz at normal load, which means that the effective isolation starts at about 8 Hz. ");



//funktion som visar bild enligt arrayn i tabellcell

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



function visaBild(vilken) {

	document.disk.src=Bilder[vilken]

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

}

function startText(){

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

}