
	function showOther(self, id)
	{
		if(self.className == 'project-other')
		{
			self.className = 'project-other-selected';
		}
		else
		{
			self.className = 'project-other';
		}
	
		var el = document.getElementById('other_' + id);
		
		if(el.style.display == 'block')
		{	
			el.style.display = 'none';
		}
		else
		{
			el.style.display = 'block';
		}
	}