// JavaScript Document

window.onload = function() {
		prepareGallery();
	}

	function prepareGallery(){
		var thumbs = document.getElementById("product-thumbs");
		var links = thumbs.getElementsByTagName("a");
		for (var i=0; i<links.length; i++){
			links[i].onclick = function() {
				for (var i=0; i<links.length; i++){
					links[i].setAttribute("class","thumb")
				}
				showPic(this);
				return false;
			}
		}
	}
	
	function showPic(whichpic) {
		var source = whichpic.getAttribute("href");
		var detail = document.getElementById("product-full");
		detail.setAttribute("src",source);
		whichpic.setAttribute("class","thumb selected");
	}