function changeBodyAboutHistory(){
	turnOffAbout();
	document.getElementById('history').setAttribute("class", "active");
	document.getElementById('content-details-panel-history').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
	
}
function changeBodyAboutCompany(){
	turnOffAbout();
	document.getElementById('company').setAttribute("class", "active");
	document.getElementById('content-details').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
	
}
function changeBodyAboutCommunity(){
	turnOffAbout();
	document.getElementById('community').setAttribute("class", "active");
	document.getElementById('content-details-panel-community').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
	
}
function changeBodyAboutStatistics(){
	turnOffAbout();
	document.getElementById('statistics').setAttribute("class", "active");
	document.getElementById('content-details-panel-statistics').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
	
}
function changeBodyAboutCareers(){
	turnOffAbout();
	document.getElementById('careers').setAttribute("class", "active");
	document.getElementById('content-details-careers').style.display = 'block';
	document.getElementById('photo-large-careers').style.display = 'block';
	
}
function turnOffAbout(){
	document.getElementById('history').setAttribute("class", "not-active");
	document.getElementById('company').setAttribute("class", "not-active");
	document.getElementById('community').setAttribute("class", "not-active");
	document.getElementById('statistics').setAttribute("class", "not-active");
	document.getElementById('careers').setAttribute("class", "not-active");
	document.getElementById('content-details').style.display = 'none';
	document.getElementById('content-details-panel-community').style.display = 'none';
	document.getElementById('content-details-panel-statistics').style.display = 'none';
	document.getElementById('content-details-panel-history').style.display = 'none';
	document.getElementById('content-details-careers').style.display = 'none';
	document.getElementById('photo-large-careers').style.display = 'none';
	document.getElementById('photo-large').style.display = 'none';
	
}


