// 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"] = "SK 1 - for timing belt and sprocket gear applications";
subInfos["sk2"] = "SK 2 - with clamping hub for direct drives";
subInfos["sk3"] = "SK 3 - with conical clamp connection for direct drives";
subInfos["sk5"] = "SK 5 - with clamping hub press-fit version for direct drives";
subInfos["es2"] = "ES 2 - Torque Limiter with clamping hub";

subInfos["standard_bk"] = "Please select a product:";
subInfos["bk1"] = "BK 1 - with flange mounting";
subInfos["bk2"] = "BK 2, BKC and BKL - with clamping hub";
subInfos["bk3"] = "BK 3 - with conical clamp connection";
subInfos["bk4"] = "BK 4 -  for FANUC-drives";
subInfos["bk5"] = "BK 5 - with tapered press-fit connection";
subInfos["bk6"] = "BK 6 - with conical sleeves and tapered press-fit connection";
subInfos["bk7"] = "BK 7 - with clamping hub and expanding shaft";
subInfos["bkh"] = "BKH -  with split 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"] = "MK 1 - with radial clamping screws";
subInfos["mk2"] = "MK 2 - with clamping hub";
subInfos["mk3"] = "MK 3 - with clamping hub and expanding shaft";
subInfos["mk4"] = "MK 4 - with radial clamping screws and press-fit connection";
subInfos["mk5"] = "MK 5 - with clamping hub and press-fit connection";
subInfos["mk6"] = "MK 6 - with clamping hub, expanding shaft and press-fit connection";
subInfos["BKL003"] = "BKL 003 - with clamping hub";
subInfos["fk1"] = "FK 1 - with clamping hub and expanding shaft";

subInfos["standard_ek"] = "Please select a product:";
subInfos["ek2"] = "EKL and EK 2 - with clamping hub";
subInfos["ekh"] = "EKH - with split clamping hub";
subInfos["ek6"] = "EK 6 - with tapered conical sleeve";
subInfos["ek1"] = "EK 1 - with pure keyway connection";
subInfos["ez2"] = "EZ 2 - Line shaft with clamping hub";
subInfos["es2"] = "ES 2 - Torque Limiter with clamping hub";
subInfos["ek4"] = "EK 4 - for conical shaft ends";
subInfos["ek7"] = "EK 7 - with expanding shaft";

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";
	}
	}
}
