// JavaScript Document

function showWEB() {
document.getElementById("gfx").style.display = "none"
document.getElementById("web").style.display = "block"
document.getElementById("oth").style.display = "none"

document.getElementById("gfxlink").style.Color = "#666"
document.getElementById("gfxlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
document.getElementById("weblink").style.Color = "#000"
document.getElementById("weblink").style.backgroundImage = "url(http://www.turtle-media.com/images/2down.jpg)"
document.getElementById("othlink").style.Color = "#666"
document.getElementById("othlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
}

function showGFX() {
document.getElementById("gfx").style.display = "block"
document.getElementById("web").style.display = "none"
document.getElementById("oth").style.display = "none"

document.getElementById("gfxlink").style.Color = "#000"
document.getElementById("gfxlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2down.jpg)"
document.getElementById("weblink").style.Color = "#666"
document.getElementById("weblink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
document.getElementById("othlink").style.Color = "#666"
document.getElementById("othlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
}

function showOTH() {
document.getElementById("gfx").style.display = "none"
document.getElementById("web").style.display = "none"
document.getElementById("oth").style.display = "block"

document.getElementById("gfxlink").style.Color = "#666"
document.getElementById("gfxlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
document.getElementById("weblink").style.Color = "#666"
document.getElementById("weblink").style.backgroundImage = "url(http://www.turtle-media.com/images/2normal.jpg)"
document.getElementById("othlink").style.Color = "#000"
document.getElementById("othlink").style.backgroundImage = "url(http://www.turtle-media.com/images/2down.jpg)"
}
