// JavaScript Document
function displayP(theid){  
	var thearray= new Array("main_index","proj_1", "proj_2", "proj_3", "proj_4", "proj_5", "proj_6", "proj_7", "proj_8", "proj_9", "proj_10", "proj_11", "proj_12", "proj_13", "proj_14", "proj_15", "proj_16", "proj_17", "proj_18", "proj_19", "proj_20", "proj_21", "proj_22", "proj_23", "proj_24", "proj_25", "proj_26", "proj_27", "proj_28", "proj_29", "proj_30", "lehre", "cv", "contact", "links");  
	for(i=0; i<thearray.length; i++){        
		if(thearray[i] == theid){              
			document.getElementById(theid).style.display="block";        
		}else{
			document.getElementById(thearray[i]).style.display="none";
		}
	}
}

function displayPList(theid){  
	var thearray= new Array("projectlist1","projectlist2", "projectlist3");  
	for(i=0; i<thearray.length; i++){        
		if(thearray[i] == theid){              
			document.getElementById(theid).style.display="block";        
		}else{
			document.getElementById(thearray[i]).style.display="none";
		}
	}
}