function showDiv(divID){
	new Effect.Appear(divID); 
	document.getElementById(divID).className = 'trainerActive';
}

function hideDiv(divID){
	new Effect.Fade(divID);
	document.getElementById(divID).className = 'trainerInit';
}
