
function hiliteURL (which, pic)
{
	var imgoff = 'images/note_off.gif';
	if (document.kliste) document.kliste.src    = imgoff;
	if (document.tourneeangebote) document.tourneeangebote.src  = imgoff;
	if (document.weitereangebote) document.weitereangebote.src  = imgoff;
	if (document.termine) document.termine.src   = imgoff;
	if (document.downloads) document.downloads.src = imgoff;
	
	if (document.new1) document.new1.src = imgoff;
	if (document.new2) document.new2.src = imgoff;
	
	if (document.impressum) document.impressum.src = imgoff;
	if (document.kontakt) document.kontakt.src   = imgoff;
	if (document.anfang) document.anfang.src = 'images/bass_off.gif';
	
	which.src = 'images/' + pic;
}

