<!--
/*
function showDesc() {
Effect.BlindDown('projectDesc');
$('showDetails').style.display = 'none';
$('hideDetails').style.display = 'block';
}

function hideDesc() {
$('hideDetails').style.display = 'none';
$('showDetails').style.display = 'block';
Effect.BlindUp('projectDesc');
}
*/

function showInfo(divIn) {
	setTimeout("Effect.Appear('"+divIn+"', {duration: 0.5, from: 0.0, to: 1.0 })", 0);
	// document.getElementById('linkClientInfo').style.color = '#959595';
	$('linkClientInfo').innerHTML = '<a href="javascript:hideInfo(\'projectDesc\');" style="color: #959595;">+ what we did</a>';
}

function hideInfo(divOut) {
	setTimeout("Effect.Fade('"+divOut+"', {duration: 0.5, from: 1.0, to: 0.0 })", 0);
	// document.getElementById('linkClientInfo').style.color = '#63afec';
	$('linkClientInfo').innerHTML = '<a href="javascript:showInfo(\'projectDesc\');">+ what we did</a>';
}	

// -->



