/* Scripts fuer Startseite Kuesnacht */
function setNewsView(tab){
	var tabID = new Array("newsbox_informationen","newsbox_publikationen", "newsbox_stellen", "newsbox_bau");
	for(var i=0;i<tabID.length; i++){
		var e = getE(tabID[i]+"_li");
		if(tabID[i]!=tab){
			dspDiv(tabID[i],'none');
			e.className = e.className.replace("current","");
			}
		else{
			dspDiv(tabID[i],'block');
			e.className = "current";
			}
		}
		return false;
}
