function showAds() {
	document.getElementById('ads').style.display  = 'block';
}

function hideAds() {
	document.getElementById('ads').style.display  = 'none';
}


function showMechanics() {
	document.getElementById('mechanics').style.display  = 'block';
}

function hideMechanics() {
	document.getElementById('mechanics').style.display  = 'none';
}


