<!-- hier steht die java-script-function von Alex -->
function img_swap(id, sb_s)
{
	if(sb_s == 0)
	{
		document.getElementById('s1_news').style.backgroundImage = 'url(img/switch1-button3.jpg)';
		document.getElementById('s1_forum').style.backgroundImage = 'url(img/switch1-button5.jpg)';
		document.getElementById('s1_dl').style.backgroundImage = 'url(img/switch1-button7.jpg)';
	}
	
	if(id == 's1_news')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch1-button3-h.jpg)';
	}
	if(id == 's1_forum')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch1-button5-h.jpg)';
	}
	if(id == 's1_dl')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch1-button7-h.jpg)';
	}
	
	
		if(sb_s == 1)
	{
		document.getElementById('s2_s1').style.backgroundImage = 'url(img/switch2-button3.jpg)';
		document.getElementById('s2_s2').style.backgroundImage = 'url(img/switch2-button5.jpg)';
		document.getElementById('s2_s3').style.backgroundImage = 'url(img/switch2-button7.jpg)';
	}
	
	if(id == 's2_s1')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch2-button3-h.jpg)';
	}
	if(id == 's2_s2')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch2-button5-h.jpg)';
	}
	if(id == 's2_s3')
	{
	document.getElementById(id).style.backgroundImage = 'url(img/switch2-button7-h.jpg)';
	}
}

<!-- hier ist die java-script-function von Alex zu ende-->