
	if (document.images){
		profileup = new Image();
		profiledown = new Image();
		galleryup = new Image();
		gallerydown = new Image();
		contactup = new Image();
		contactdown = new Image();
		aboutusbuttonup = new Image();
		aboutusbuttondown = new Image();
		servicesbuttonup = new Image();
		servicesbuttondown = new Image();
		clientsbuttonup = new Image();
		clientsbuttondown = new Image();
		kevinbuttonup = new Image();
		kevinbuttondown = new Image();

		profileup.src = "images/ProfileTextOff.gif";
		profiledown.src = "images/ProfileTextOn.gif";
		galleryup.src = "images/GalleryTextOff.gif";
		gallerydown.src = "images/GalleryTextOn.gif";
		contactup.src = "images/ContactTextOff.gif";
		contactdown.src = "images/ContactTextOn.gif";
		aboutusbuttonup.src = "images/AboutUsButtonOff.gif";
		aboutusbuttondown.src = "images/AboutUsButtonOn.gif";
		servicesbuttonup.src = "images/ServicesButtonOff.gif";
		servicesbuttondown.src = "images/ServicesButtonOn.gif";
		clientsbuttonup.src = "images/ClientsButtonOff.gif";
		clientsbuttondown.src = "images/ClientsButtonOn.gif";
		kevinbuttonup.src = "images/KTButtonOff.gif";
		kevinbuttondown.src = "images/KTButtonOn.gif";
		
		}
		function changeTo(imageName){
			if (document.images){
				if (imageName=="profile") document[imageName].src = profiledown.src;
				if (imageName=="gallery") document[imageName].src = gallerydown.src;
				if (imageName=="contact") document[imageName].src = contactdown.src;
				if (imageName=="aboutus") document[imageName].src = aboutusbuttondown.src;
				if (imageName=="services") document[imageName].src = servicesbuttondown.src;
				if (imageName=="clients") document[imageName].src = clientsbuttondown.src;
				if (imageName=="kevin") document[imageName].src = kevinbuttondown.src;
				}
			}

		function changeBack(imageName){
			if (document.images){
				if (imageName=="profile") document[imageName].src = profileup.src;
				if (imageName=="gallery") document[imageName].src = galleryup.src;
				if (imageName=="contact") document[imageName].src = contactup.src;
				if (imageName=="aboutus") document[imageName].src = aboutusbuttonup.src;
				if (imageName=="services") document[imageName].src = servicesbuttonup.src;
				if (imageName=="clients") document[imageName].src = clientsbuttonup.src;
				if (imageName=="kevin") document[imageName].src = kevinbuttonup.src;
				}
			}
