/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	functions.js
	
	--
	Alexander Gewessler, ohneworte.net
	Martin Hochreiter, martinhochreiter.at
	
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/3


function moArtist(box, id){
	$('li_'+id).className = $('li_'+id).className.replace("link","linkHover");
	
	box.onmouseout = function(){
		$('li_'+id).className = $('li_'+id).className.replace("linkHover","link");
	}
}

function moArtistList(list, id){
	$('art_'+id).className = $('art_'+id).className.replace("artist","artistHover");
	
	list.onmouseout = function(){
		$('art_'+id).className = $('art_'+id).className.replace("artistHover","artist");
	}
}

function changeVisibility(element){
	var el = document.getElementById(element);
	el.style.display = (el.style.display != 'none' ? 'none' : 'block' );
}
