// JavaScript Document

//Set Active Color
function setToothColor(colorCode) {
		currentToothColor = colorCode;
}

function changeToothColor(selectedTooth) {
		if (document.images) {
			document[selectedTooth].src = "teeth/" + currentToothColor + "/" + selectedTooth + ".jpg";
		}
}

function changeTeethTop() {
		if (document.images) {
			document["t01"].src = "teeth/" + currentToothColor + "/t01.jpg";
			document["t02"].src = "teeth/" + currentToothColor + "/t02.jpg";
			document["t03"].src = "teeth/" + currentToothColor + "/t03.jpg";
			document["t04"].src = "teeth/" + currentToothColor + "/t04.jpg";
			document["t05"].src = "teeth/" + currentToothColor + "/t05.jpg";
			document["t06"].src = "teeth/" + currentToothColor + "/t06.jpg";
			document["t07"].src = "teeth/" + currentToothColor + "/t07.jpg";
			document["t08"].src = "teeth/" + currentToothColor + "/t08.jpg";
			document["t09"].src = "teeth/" + currentToothColor + "/t09.jpg";
			document["t10"].src = "teeth/" + currentToothColor + "/t10.jpg";
			document["t11"].src = "teeth/" + currentToothColor + "/t11.jpg";
			document["t12"].src = "teeth/" + currentToothColor + "/t12.jpg";
		}
}
function changeTeethBottom() {
		if (document.images) {
			document["b01"].src = "teeth/" + currentToothColor + "/b01.jpg";
			document["b02"].src = "teeth/" + currentToothColor + "/b02.jpg";
			document["b03"].src = "teeth/" + currentToothColor + "/b03.jpg";
			document["b04"].src = "teeth/" + currentToothColor + "/b04.jpg";
			document["b05"].src = "teeth/" + currentToothColor + "/b05.jpg";
			document["b06"].src = "teeth/" + currentToothColor + "/b06.jpg";
			document["b07"].src = "teeth/" + currentToothColor + "/b07.jpg";
			document["b08"].src = "teeth/" + currentToothColor + "/b08.jpg";
			document["b09"].src = "teeth/" + currentToothColor + "/b09.jpg";
			document["b10"].src = "teeth/" + currentToothColor + "/b10.jpg";
			document["b11"].src = "teeth/" + currentToothColor + "/b11.jpg";
			document["b12"].src = "teeth/" + currentToothColor + "/b12.jpg";
		}
}
function changeTeethAll() {
		changeTeethTop();
		changeTeethBottom();
}
function changeTeethEven() {
		if (document.images) {
			document["t02"].src = "teeth/" + currentToothColor + "/t02.jpg";
			document["b01"].src = "teeth/" + currentToothColor + "/b01.jpg";
			document["t04"].src = "teeth/" + currentToothColor + "/t04.jpg";
			document["b03"].src = "teeth/" + currentToothColor + "/b03.jpg";
			document["t06"].src = "teeth/" + currentToothColor + "/t06.jpg";
			document["b05"].src = "teeth/" + currentToothColor + "/b05.jpg";
			document["t08"].src = "teeth/" + currentToothColor + "/t08.jpg";
			document["b07"].src = "teeth/" + currentToothColor + "/b07.jpg";
			document["t10"].src = "teeth/" + currentToothColor + "/t10.jpg";
			document["b09"].src = "teeth/" + currentToothColor + "/b09.jpg";
			document["t12"].src = "teeth/" + currentToothColor + "/t12.jpg";
			document["b11"].src = "teeth/" + currentToothColor + "/b11.jpg";
		}
}
function changeTeethOdd() {
		if (document.images) {
			document["t01"].src = "teeth/" + currentToothColor + "/t01.jpg";
			document["b02"].src = "teeth/" + currentToothColor + "/b02.jpg";
			document["t03"].src = "teeth/" + currentToothColor + "/t03.jpg";
			document["b04"].src = "teeth/" + currentToothColor + "/b04.jpg";
			document["t05"].src = "teeth/" + currentToothColor + "/t05.jpg";
			document["b06"].src = "teeth/" + currentToothColor + "/b06.jpg";
			document["t07"].src = "teeth/" + currentToothColor + "/t07.jpg";
			document["b08"].src = "teeth/" + currentToothColor + "/b08.jpg";
			document["t09"].src = "teeth/" + currentToothColor + "/t09.jpg";
			document["b10"].src = "teeth/" + currentToothColor + "/b10.jpg";
			document["t11"].src = "teeth/" + currentToothColor + "/t11.jpg";
			document["b12"].src = "teeth/" + currentToothColor + "/b12.jpg";
		}
}




currentToothColor = "white"
// -->
		
