//skapar lista till bilder

	var Bilder = new Array();

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

	Bilder.push("../images/300/3_shelves_black.jpg");

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

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

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

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

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



//skapar lista för bildtext

	var BildText=new Array();

	BildText.push("Solid Tech introduces Rack of Silence, a new audiophile rack combining innovative resonance controlling technology, with elegant design features and unmatched flexibility. Supports equipment with a width of 535mm to be placed on each shelf.");

	BildText.push("Rack of Silence is available in stainded cherry or black lacquer finish. The wood trims are made of Beechwood (hardwood). Three pillar heights are available: 300, 600 and 900mm.");

	BildText.push("Rack of Silence is also available as a Mono amp stand, both fixed and suspended versions. Basic shelves support 40kg (88lbs.) and the Heavy Duty shelves support 80 kg (176 lbs.)");

	BildText.push("To achieve even greater isolation one can equip the shelves with free-floating suspension. These suspended shelves are totally isolated in both horizontal and vertical planes.");

	BildText.push("The extruded aluminium pillars can be sand filled. The end pieces are made of hardwood with a steelball installed at the tip. This design resolves the problem normally associated with spikes. ");

	BildText.push("Feet of Silence can be used as an option on both the fixed and the suspended shelves for further isolation and performance improvement.");

	BildText.push("Any audio configuration can be positioned in Rack of Silence. There are no restraints. The unlimited level positioning of adjustable shelves provides efficient space management.");



//funktion som visar bild enligt arrayn i tabellcell

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



function visaBild(vilken) {

	document.rack.src=Bilder[vilken]

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

}

function startText(){

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

}