function off (name) {
  document[name].src='images/'+name+'.gif';
}
function on (name) {
  document[name].src='images/'+name+'_on.gif';
}


function offinside (name) {
  document[name].src='../images/'+name+'.gif';
}
function oninside (name) {
  document[name].src='../images/'+name+'_on.gif';
}

function iconOn(photoid) {
	identity=document.getElementById(photoid);
	identity.className='photoOn';
	}
	
function iconOff(photoid) {
	identity=document.getElementById(photoid);
	identity.className='photo';
	}
	
function projectOn(projectid) {
	identity=document.getElementById(projectid);
	identity.className='projectOn';
	}
	
function projectOff(projectid) {
	identity=document.getElementById(projectid);
	identity.className='project';
	}