// ---------------------------------------------------

function showAbout(section) {
	if (section.toString())
	{
		aboutHideAll();
		setTimeout("$('about_"+section+"').show()",200);
	}
}

/// ---------------------------------------------------
function showPerson(person) {

if (person.toString())
{
	aboutHidePersons();
	setTimeout("$('person_"+person+"').show()",100);
}

}
/// ---------------------------------------------------

function aboutHideAll() {
	$('about_team').hide();
	$('about_details').hide();
	$('about_press').hide();
	$('about_history').hide();
	$('about_comingsoon').hide();
	//$('about_languages').hide();
	$('about_logos').hide();
}

// ---------------------------------------------------


function aboutInit(){
	setTimeout("getPress()",500);
}

// ---------------------------------------------------

function getPress(start){
	loading('','show');
	xajax_about('press',start);
}