
var delay=3000

var ie4=document.all

var curindex_artists=0
var totalartists=0

function get_total_artists(){
if (ie4){
while (eval("document.all.featcontent"+totalartists))
totalartists++
}
else{
while (document.getElementById("featcontent"+totalartists))
totalartists++
}
}

function contract_all_artists(){
for (y=0;y<totalartists;y++){
if (ie4)
eval("document.all.featcontent"+y).style.display="none"
else
document.getElementById("featcontent"+y).style.display="none"
}
}

function expand_one_artists(which){
contract_all_artists()
if (ie4)
eval("document.all.featcontent"+which).style.display=""
else
document.getElementById("featcontent"+which).style.display=""
}

function rotate_content_artists(){
get_total_artists()
contract_all_artists()
expand_one_artists(curindex_artists)
curindex_artists=(curindex_artists<totalartists-1)? curindex_artists+1: 0
setTimeout("rotate_content_artists()",delay)
}



