function toggleDiv(divid){
if(document.getElementById(divid).style.display == 'inline')
	{document.getElementById(divid).style.display = 'none';}
else
	{document.getElementById(divid).style.display = 'inline';}
}



function toggleLink(linkid){
if(document.getElementById(linkid).className == 'artist')
	{document.getElementById(linkid).className = 'artiston';}
else
	{document.getElementById(linkid).className = 'artist';}
}


function toggleRow(rowid){
if(document.getElementById(rowid).className == '')
	{document.getElementById(rowid).className = 'hide';}
else
	{document.getElementById(rowid).className = '';}
}



function toggleImg(imgid){
if(document.getElementById(imgid).src = 'images/plus.gif')
	{document.getElementById(imgid).src = 'images/minus.gif';}
else 
	{document.getElementById(imgid).src == 'images/plus.gif';}
}




function toggleZoom(id){
if(document.getElementById(id).className == '')
	{document.getElementById(id).className = 'over';}
else
	{document.getElementById(id).className = '';}
}

