// JavaScript Document

function changeImage(filename){
  document.mainimage.src = filename;
}

function changeGalleryThumbColor(theId){
	servicesStyle = document.getElementById(theId);
	servicesStyle.style.background = 'url(images/galleryOrangeThumbBox.gif)';
}

function changeGalleryThumbBack(theId){
	servicesStyle = document.getElementById(theId);
	servicesStyle.style.background = 'url(images/galleryThumbBox.gif)';
}