// CHANGE PRODUCT IMAGE VIEWS

currentActiveButton = "";

function loadView(but,img){
	if(but != currentActiveButton){
		document.getElementById(but).blur();
		document.prodImg.src="/images/products/"+img;
		document.getElementById(but).style.backgroundColor = "#333099";
		document.getElementById(but).style.color = "#ffffff";
		document.getElementById(currentActiveButton).style.backgroundColor = "#ffffff";
		document.getElementById(currentActiveButton).style.color = "#333099";
		currentActiveButton = but;
	}
}

function setDefault(){
	document.getElementById("button1").style.backgroundColor = "#333099";
	document.getElementById("button1").style.color = "#ffffff";
	currentActiveButton = "button1";
}
