<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'



var color		= "FFFFFF"		// HEADER BACKGROUND COLOR




// COPYRIGHT 2007 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START GRAPHIC HEADER

document.write('<TABLE cellpadding="0" cellspacing="0" border="1" width="100%" BGCOLOR="#'+color+'"><tr><td align="center">');
document.write('<a href="index.htm"><img src="picts/logo.jpg" border="0" alt="PARÓQUIA NOSSA SENHORA DE LOURDES"></a><br>');
document.write('</td></tr></table>');
document.write('<div align="center"><a href="#" class="menuhorztext">Paróquia N. Sra. Lourdes - Arquidiocese de São Paulo - Região Lapa - Paróquia Agostiniana Recoleta a serviço da Comunidade - 50 anos!</a></div>');


// CODE FOR THE DATE DISPLAY

function date1( ){
m= new Array(12);
m[0]="Janeiro";m[1]="Fevereiro";m[2]="Março";m[3]="Abril";m[4]="Maio";m[5]="Junho";
m[6]="Julho";m[7]="Agosto";m[8]="Setembro";m[9]="Outubro";m[10]="Novembro";m[11]="Dezembro";
now = new Date( );
month=now.getMonth( );
day=now.getDate( );
switch (day){
case 1:
sup="";
break;
case 21:
sup="";
break;
case 31:
sup="";
break;
case 2:
sup="";
break;
case 22:
sup="";
break;
case 3:
sup="";
break;
case 23:
sup="";
break;
default:
sup="";
}
year=now.getFullYear( );
document.write("<FONT SIZE=2 COLOR='darkblue'><DIV ALIGN='LEFT'>"+day+"." +m[month]+"."+year+"</DIV></FONT>");
}




//  End -->