a = "projekt_bilder";
b = "";
c = "display";
s = "style";
e = "color"; 
function newswechsel(i, j) {
	d.getElementById('navi_projektauswahl2').style.display = 'block';
	d.getElementById('navi_news').style.display = 'block';
	if (b) {
		d.getElementById(b).style.color = '#999999';
	}
	b = j;
	d.getElementById(j).style.color = '#3399CC';
	d.getElementById('news_container').style.display = 'block';
	if (a) {
		d.getElementById(a).style.display = 'none';
	}
	a = i;
	d.getElementById(i).style.display = 'block';
}

function show_slideshow() {
	if (a) {
		d.getElementById(a).style.display = 'none';
		a = "projekt_bilder";
	}
	if (b) {
		d.getElementById(b).style.color = '#999999';
	}
	d.getElementById('news_container').style.display = 'none';
	d.getElementById('projekt_bilder').style.display = 'block';	
	d.getElementById('navi_projektauswahl2').style.display = 'none';
}