var selectedImage = 1;
var resetColor = "#999999";
var highlightColor = "#cccccc";

function ShowImage(whatImage){

	var imageDiv = document.getElementById("thepicture");
	var contactDiv = document.getElementById("thecontact");
	var newImage = new Image();
	var oldLink;
	var newLink;
	
	if (imageDiv.style.display == "none"){
		imageDiv.style.display = "block";
		contactDiv.style.display = "none";
	}
	
	newImage.src = "images/" + linkImage[whatImage - 1];
	document.images["theimage"].src = newImage.src;
	
	if (selectedImage != 0){
		oldLink = document.getElementById("link" + selectedImage);
		oldLink.style.color = resetColor;
	}
	
	selectedImage = whatImage;
	
	newLink = document.getElementById("link" + selectedImage);
	newLink.style.color = highlightColor;
	
	

}

function ShowContact(){

	var imageDiv = document.getElementById("thepicture");
	var contactDiv = document.getElementById("thecontact");
	var oldLink;

	if (selectedImage != 0){
		oldLink = document.getElementById("link" + selectedImage);
		oldLink.style.color = resetColor;
	}
	
	imageDiv.style.display = "none";
	contactDiv.style.display = "block";
	
}