function flipTab(divShow) {
 
if(divShow=="artistPhoto") {
document.getElementById("artistMP3").style.display="none";
document.getElementById("artistMovie").style.display="none";
document.getElementById("artistPhoto").style.display="block";
document.getElementById("mp3arrows").style.display="none";
document.getElementById("moviearrows").style.display="none";
document.getElementById("photoarrows").style.display="block";
document.getElementById("sounds").getElementsByTagName("a")[0].className = "link";
document.getElementById("videos").getElementsByTagName("a")[0].className = "link";
document.getElementById("photos").getElementsByTagName("a")[0].className = "current";
}
if(divShow=="artistMP3") {
document.getElementById("artistPhoto").style.display="none";
document.getElementById("artistMovie").style.display="none";
document.getElementById("artistMP3").style.display="block";
document.getElementById("mp3arrows").style.display="block";
document.getElementById("moviearrows").style.display="none";
document.getElementById("photoarrows").style.display="none";
document.getElementById("photos").getElementsByTagName("a")[0].className = "link";
document.getElementById("videos").getElementsByTagName("a")[0].className = "link";
document.getElementById("sounds").getElementsByTagName("a")[0].className = "current";
}
if(divShow=="artistMovie") {
document.getElementById("artistMP3").style.display="none";
document.getElementById("artistPhoto").style.display="none";
document.getElementById("artistMovie").style.display="block";
document.getElementById("mp3arrows").style.display="none";
document.getElementById("moviearrows").style.display="block";
document.getElementById("photoarrows").style.display="none";
document.getElementById("photos").getElementsByTagName("a")[0].className = "link";
document.getElementById("sounds").getElementsByTagName("a")[0].className = "link";
document.getElementById("videos").getElementsByTagName("a")[0].className = "current";
}

}