var minterval;

function growMenuButton(id)
{
	document.getElementById(id).style.height = '42px';
	document.getElementById(id).style.width = '140px';
	document.getElementById(id).style.color = '#C9D814';
}

function shrinkMenuButton(id)
{
	document.getElementById(id).style.height = '36px';
	document.getElementById(id).style.width = '130px';
	document.getElementById(id).style.color = 'white';
}