// MENU

  	function mOvr(src,clrOver) {
    	if (!src.contains(event.fromElement)) {
		src.style.cursor = 'hand';
	  	src.bgColor = clrOver;
		}
  	}
  	function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
	  	src.style.cursor = 'default';
	  	src.bgColor = clrIn;
		}
  	}
  	function mClk(src) {
    	if(event.srcElement.tagName=='TD'){
	  	src.style.tags('A')[0].click();
    		}
  	}


// DATA POR EXTENSO

        hoje = new Date()
        dia = hoje.getDate()
        dias = hoje.getDay()
        mes = hoje.getMonth()
        ano = hoje.getYear()

        if (dia < 10)

                dia = "0" + dia

        if (ano < 2000)

                ano = "19" + ano

        function CriaArray (n) {

        this.length = n }

        NomeDia = new CriaArray(7)

			NomeDia[0] = "Domingo"
			NomeDia[1] = "Segunda"
			NomeDia[2] = "Ter&ccedil;a"
			NomeDia[3] = "Quarta"
			NomeDia[4] = "Quinta"
			NomeDia[5] = "Sexta"
			NomeDia[6] = "S&aacute;bado"

         NomeMes = new CriaArray(12)

			NomeMes[0] = "Janeiro"
			NomeMes[1] = "Fevereiro"
			NomeMes[2] = "Mar&ccedil;o"
			NomeMes[3] = "Abril"
			NomeMes[4] = "Maio"
			NomeMes[5] = "Junho"
			NomeMes[6] = "Julho"
			NomeMes[7] = "Agosto"
			NomeMes[8] = "Setembro"
			NomeMes[9] = "Outubro"
			NomeMes[10] = "Novembro"
			NomeMes[11] = "Dezembro"

function Data()
{
 if (ano == '19100') ano = '2000';
 document.write (NomeDia[dias] + ", " + dia + " de " + NomeMes[mes] + " de " + ano+"&nbsp;&nbsp;")
}


// NÃO PERMITE CLICAR COM O BOTÃO DIREITO DO MOUSE

function click() {
if (event.button==2||event.button==3) {
 oncontextmenu='return false';
  }
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")


//COPYRIGHT

function copyright(){
document.write ("Copyright&copy; " + ano + " Flash Sound")
} 

