window.onload = function(){	hideHeading();	showContents('profile');	setTabClick('navprofile','profile');	setTabClick('navcommunication','communication');	setTabClick('navevent','event');	mmsetTabClick('navcontact','contact');};function hideHeading() {	hide('profileHeading');	hide('communicationHeading');	hide('eventHeading');	hide('contactHeading');}function showContents(contentName){	hide('profile'); 	hide('communication'); 	hide('event'); 	hide('contact'); 	show(contentName);	chengeTabs(contentName);}function chengeTabs(contentName){	var e = document.getElementById('nav');	e.className = contentName;}function setTabClick(li,div) {	var e = document.getElementById(li).getElementsByTagName('a')[0];	e.contents = div;	e.onclick = function(){		showContents(this.contents);		return false;	};}function hide(elementId) {	document.getElementById(elementId).style.display = "none";}function show(elementId) {	document.getElementById(elementId).style.display = "";}