//skapar lista till bilder

	var Bilder = new Array();

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

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

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

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

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



//skapar lista för bildtext

	var BildText=new Array();

	BildText.push("Wires are microphonic, and in order to achieve your system's peak performance, it is essential to isolate them from large resonance prone structures - such as the floor!");

	BildText.push("To enhance without compromising, the base of the Cradle of Silence is made of high-gloss polished Corian, one of the least resonant materials available today - but unfortunately one of the most expensive.");

	BildText.push("By isolating the cables from vibrations, static electricity and moisture, the enhancement is a considerably lower noise floor and increased dynamics. The Cradle of Silence also eliminates the risk of static discharge. ");

	BildText.push("The suspension consists of purpose moulded age resistant O-rings which provide an extremely effective isolation from ground borne vibrations.");

	BildText.push("How many Cradles does a system need? It depends on the length and the stiffness of the cable. In order to reach peak performance it is necessary to lift the entire cable by at least an inch off the floor.");



//funktion som visar bild enligt arrayn i tabellcell

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



function visaBild(vilken) {

	document.cradle.src=Bilder[vilken]

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

}

function startText(){

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

}