function showPortfolio()
{
	document.getElementById('menu').style.display = "block";
	document.getElementById('contact').style.display = "none";	
}

function hidePortfolio()
{
	document.getElementById('menu').style.display = "none";	
}

function showCommercial()
{
	document.getElementById('menu2').style.display = "block";
	document.getElementById('contact').style.display = "none";	
}

function hideCommercial()
{
	document.getElementById('menu2').style.display = "none";	
}

function showContact()
{
	document.getElementById('contact').style.display = "block";
}

function hideContact()
{
	document.getElementById('contact').style.display = "none";	
}



