// Autor : Thomas Büchler
// Erstellt : 15.11.04
// Kommentar : Fügt kurze Infos in Layer ein, z.b. beim Produktsubmenü und wechselt das angezeigte Produktbild


var subInfos = Array();

// ------------------------------------------------   CONFIG	ANFANG

subInfos["standard_sk"] = "Please select a product:";
subInfos["sk1"] = "SK1 - for timing belt and sprocket gear applications";
subInfos["sk2"] = "SK2 - with clamping hub for direct drives";
subInfos["sk3"] = "SK3 - with conical clamp connection for direct drives";
subInfos["sk5"] = "SK5 - with clamping hub press-fit version for direct drives";
subInfos["es2"] = "ES2 - Torque Limiter with clamping hub";
subInfos["esl"] = "ESL - Economy Class Torque Limiter with clamping hub";
subInfos["st1"] = "ST1 - with keyway connection for indirect drives";

subInfos["standard_bk"] = "Please select a product:";
subInfos["bk1"] = "BK1 - with flange mounting";
subInfos["bk2"] = "BK2, BKC and BKL - with clamping hub";
subInfos["bk3"] = "BK3 - with conical clamp connection";
subInfos["bk4"] = "BK4 - for FANUC-drives";
subInfos["bk5"] = "BK5 - with tapered press-fit connection";
subInfos["bk6"] = "BK6 - with conical sleeves and tapered press-fit connection";
subInfos["bk7"] = "BK7 - with clamping hub and expanding shaft";
subInfos["bk8"] = "BK8 - with flange mounting for robot-gears";
subInfos["bkh"] = "BKH -  with split hub";
subInfos["bkm"] = "BKM - with clamping hub";

subInfos["standard_za"] = "Please select a product:";
subInfos["za1"] = "Line Shaft ZA - 10-800 Nm";
subInfos["za2"] = "Line Shaft ZA - 1500-4000 Nm";
subInfos["za3"] = "Line Shaft ZAE Economy - 10-800 Nm";

subInfos["standard_mk"] = "Please select a product:";
subInfos["mk1"] = "MK1 - with radial clamping screws";
subInfos["mk2"] = "MK2 - with clamping hub";
subInfos["mk3"] = "MK3 - with clamping hub and expanding shaft";
subInfos["mk4"] = "MK4 - with radial clamping screws and press-fit connection";
subInfos["mk5"] = "MK5 - with clamping hub and press-fit connection";
subInfos["mk6"] = "MK6 - with clamping hub, expanding shaft and press-fit connection";
subInfos["BKL003"] = "BKL 003 - with clamping hub";
subInfos["fk1"] = "FK1 - with clamping hub and expanding shaft";

subInfos["standard_ek"] = "Please select a product:";
subInfos["ek2"] = "EKL and EK2 - with clamping hub";
subInfos["ekh"] = "EKH - with split clamping hub";
subInfos["ek6"] = "EK6 - with tapered conical sleeve";
subInfos["ek1"] = "EK1 - with pure keyway connection";
subInfos["ez2"] = "EZ2 - Line shaft with clamping hub, 12.5-2150 Nm";
subInfos["ezv"] = "EZV - Line shaft with flexible length and clamping hub, 12.5-1200 Nm";
subInfos["es2"] = "ES2 - Torque Limiter with clamping hub";
subInfos["esl"] = "ESL - Economy Class Torque Limiter with clamping hub";
subInfos["ek4"] = "EK4 - for conical shaft ends";
subInfos["ek7"] = "EK7 - with expanding shaft";
subInfos["tx1"] = "TX1 - made of plastic with pure keyway connection";

subInfos["standard_lk"] = "Please select a product:";
subInfos["lk1"] = "LK linear zero backlash";

// ------------------------------------------------   CONFIG ENDE

function submInfo(tarObject)
{
	var infoLayer = document.getElementById("smenDescDiv");
	infoLayer.innerHTML = subInfos[tarObject];

	//------ Austausch des Produktbildes
	
	if(document.getElementById("b_pics")){
	var prdPic = document.getElementById("b_pics");
	
	if(typeof(prdPic) == 'object')
	{
		var prdPic = document.getElementById("b_pics");
		prdPic.src = "images/b_"+tarObject+".jpg";
	}
	}
}