
// Aktueller Browser
var browserName = navigator.appName;

// Abfrage nach Internet-Explorer
var regMatch = browserName.match(/Microsoft/);


/* Funktion zum Ein- und Ausblenden der Produktbilder */
function swapPicture() {

	// Produktbild 1 wird ausgeblendet; Produktbild 2 wird eingeblendet
	if(document.getElementById("productPicture1").style.display == '') {
		document.getElementById("productPicture1").style.display = 'none';
		document.getElementById("productPicture2").style.display = 'block';
	}

	// Produktbild 2 wird ausgeblendet; Produktbild 1 wird eingeblendet
	else if(document.getElementById("productPicture1").style.display == 'none') {
		document.getElementById("productPicture1").style.display = '';
		document.getElementById("productPicture2").style.display = '';
	}
}

function swapPictureNew(i, linkItem) {

	// Produktbild 1 wird ausgeblendet; Produktbild 2 wird eingeblendet
	if(i == 1) {
		document.getElementById("productPicture1").style.display = 'block';
		document.getElementById("pictureLink1").style.backgroundColor = '#2C5C86';
		document.getElementById("productPicture2").style.display = 'none';
		document.getElementById("pictureLink2").style.backgroundColor = '#596875';
		if (document.getElementById("productPicture3")) {
			document.getElementById("productPicture3").style.display = 'none';
			document.getElementById("pictureLink3").style.backgroundColor = '#596875';
		}
	}

	// Produktbild 2 wird ausgeblendet; Produktbild 1 wird eingeblendet
	else if(i == 2) {
		document.getElementById("productPicture1").style.display = 'none';
		document.getElementById("pictureLink1").style.backgroundColor = '#596875';
		document.getElementById("productPicture2").style.display = 'block';
		document.getElementById("pictureLink2").style.backgroundColor = '#2C5C86';
		if (document.getElementById("productPicture3")) {
			document.getElementById("productPicture3").style.display = 'none';
			document.getElementById("pictureLink3").style.backgroundColor = '#596875';
		}
	}

	//Produktbild 3 wird ausgeblendet; Produktbild 1 wird eingeblendet
	else if(i == 3) {
		document.getElementById("productPicture1").style.display = 'none';
		document.getElementById("pictureLink1").style.backgroundColor = '#596875';
		document.getElementById("productPicture2").style.display = 'none';
		document.getElementById("pictureLink2").style.backgroundColor = '#596875';
		document.getElementById("productPicture3").style.display = 'block';
		document.getElementById("pictureLink3").style.backgroundColor = '#2C5C86';
	}
}




/*
		if(regMatch){
			tableCell.setAttribute("className","bgManufacturer","false");	// IE
		}
		else{
			tableCell.setAttribute("class","bgManufacturer","false");
		}
*/





