var noClick = false;
function enableClick(){
	noClick = false;
}


var current = '';

function showMe(section){
	if(section == current.id) return;
	if(noClick) return;
	noClick = true;
	
	
	var profileBtn = document.getElementById('profileBtn');
	var portfolioBtn = document.getElementById('portfolioBtn');
	var contactBtn = document.getElementById('contactBtn');
	
	
	profileBtn.style.color='#e8e8e8';
	portfolioBtn.style.color='#e8e8e8';
	contactBtn.style.color='#e8e8e8';
	
	var currentBtn = document.getElementById(section+'Btn');
	currentBtn.style.color='#FFF';
	var section = document.getElementById(section);
	
	if(current != ''){
		Effect.SlideUp(current, {
		   duration: 0.3,
		   afterFinish: function(){ Effect.SlideDown(section,{ duration: 0.40 }) }
	   });
	}else{
		Effect.SlideDown(section,{ duration: 0.40 });
	}
	
	
	var clickTimer = setTimeout ('enableClick();',500);
	
	current = section;
	
	return false;
}
