// 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
// erweitert durch Joachim Miltenberger


var subInfos = Array();

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

subInfos["standard_sk"] = "Please select a Torque Limiter:";
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 Bellows Coupling:";
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 double flange for robot gears";
subInfos["bkh"] = "BKH - with clamping hub";
subInfos["bkm"] = "BKM - rigid and compact, with clamping hub";
subInfos["bkz"] = "BKZ - rigid and flexible, with clamping hub";

subInfos["standard_za"] = "Please select a Line Shaft:";
subInfos["za1"] = "Line Shaft ZA - 10-800 Nm";
subInfos["za2"] = "Line Shaft ZA - 1,500-4,000 Nm";
subInfos["za3"] = "Line Shaft ZAE Economy - 10-800 Nm";
subInfos["ez2"] = "Line Shaft EZ2 - 12.5-2,150 Nm";
subInfos["ezv"] = "Line Shaft EZV - with variable length, 12.5-1,200 Nm";

subInfos["standard_mk"] = "Please select a Miniature Coupling:";
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 and press-fit connection";
subInfos["fk1"] = "FK1 - with clamping hub and expanding shaft";

subInfos["standard_ek"] = "Please select a Elastomer Jaw Coupling:";
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";
subInfos["es2"] = "ES2 - Torque Limiter with clamping hub";
subInfos["ek4"] = "EK4 - for conical shaft ends";
subInfos["ek7"] = "EK7 - with expanding shaft";
subInfos["esl"] = "ESL - Economy Class Torque Limiter with clamping hub";
subInfos["ezv"] = "Line Shaft EZV - with flexible length";

subInfos["standard_lk"] = "Please select a Linear Coupling:";
subInfos["lk"] = "LK - linear zero backlash";

subInfos["standard_tx"] = "Please select a Plastic Jaw Coupling:";
subInfos["tx1"] = "TX1 - with pure keyway connection";

// ------------------------------------------------   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";
	}
	}
}