function setMenu(id,selfy)
	{
		if($(id).style.display=='none')
			{
				$(id).show();
				$(selfy).className='menuButtonSe';
				$(selfy).style.background='url(img/button-se.gif)';
				//$(selfy).style.fontcolor='#FFFFFF';
				//onclick="getElementById('texto').style = 'background-color: red;'" /
			} else {
				$(id).hide();
				$(selfy).className='menuButton';
				$(selfy).style.background='url(img/button.gif)';
				//$(selfy).style.color='552603';
			}
	}

function setColorMenu(selfy)
	{
		if($(selfy).style.background=='url(img/button.gif)')
			{
				$(selfy).className='menuButtonSe';
				$(selfy).style.background='url(img/button-se.gif)';
				//$(selfy).style.color='FFFFFF';
			} else {
				$(selfy).style.background='url(img/button.gif)';
				//$(selfy).style.color='552603';
				$(selfy).className='menuButton';
			}
	}

