function init() {	var links, i;	links = document.getElementsByTagName('a');	for (i = 0; i < links.length; i++) {		if (links[i].className == 'profile') {			links[i].onmousedown = function() { changeProfile(this) };		}	}}function changeProfile(o) {		var profileTitle = document.getElementById('profileName');	profileTitle.firstChild.nodeValue = o.title;	var profileText = document.getElementById('profileText');	profileText.firstChild.nodeValue = o.rel;		var profileImage = document.getElementById('profileImage');	profileImage.src = '/admin/team/images/' + o.id ;}window.onload = function() {	Effect.SlideDown(document.getElementById('content-block'));	o = document.getElementById('current')	o.onclick = function() {		Effect.toggle(document.getElementById('content-block'), 'slide');		if (o.className == o.title + '-off') {			o.className = o.title;		} else {			o.className = o.title + '-off';					}	}	init();}