function MouseOverRoutine(ButtonName)
{
	if (ButtonName=="btnLogin")
	{
		button1down = new Image; 
		button1down.src = "img/log1";
		document.btnLogin.src = button1down.src;
	}
	if (ButtonName=="btnSair")
	{
		button1down = new Image; 
		button1down.src = "img/sair1";
		document.btnSair.src = button1down.src;
	}
	if (ButtonName=="btnPref")
	{
		button1down = new Image; 
		button1down.src = "img/pref1";
		document.btnPref.src = button1down.src;
	}

	if (ButtonName=="btnPasta")
	{
		button1down = new Image; 
		button1down.src = "/img/folder1";
		document.btnPasta.src = button1down.src;
	}

	if (ButtonName=="btnConf")
	{
		button1down = new Image; 
		button1down.src = "img/conf1";
		document.btnConf.src = button1down.src;
	}
	if (ButtonName=="btnMail")
	{
		button1down = new Image; 
		button1down.src = "img/mail1";
		document.btnMail.src = button1down.src;
	}
}

function MouseOutRoutine(ButtonName)
{
	if (ButtonName=="btnLogin")
	{
		button1down = new Image; 
		button1down.src = "sementes/site/img/log";
		document.btnLogin.src = button1down.src;
	}
	if (ButtonName=="btnSair")
	{
		button1up = new Image; 
		button1up.src = "img/sair";
		document.btnSair.src = button1up.src;
	}
	if (ButtonName=="btnPref")
	{
		button1down = new Image; 
		button1down.src = "img/pref";
		document.btnPref.src = button1down.src;
	}
	if (ButtonName=="btnPasta")
	{
		button1down = new Image; 
		button1down.src = "img/folder";
		document.btnPasta.src = button1down.src;
	}	

	if (ButtonName=="btnConf")
	{
		button1down = new Image; 
		button1down.src = "site/img/conf";
		document.btnConf.src = button1down.src;
	}
	if (ButtonName=="btnMail")
	{
		button1down = new Image; 
		button1down.src = "site/img/mail";
		document.btnMail.src = button1down.src;
	}
}
