<!--
imagem1 = '<img src="http://www.facprc.pt/images/headers/header1.jpg" width="750" height="165" border="0" alt="">';
imagem2 = '<img src="http://www.facprc.pt/images/headers/header2.jpg" width="750" height="165" border="0" alt="">';
imagem3 = '<img src="http://www.facprc.pt/images/headers/header3.jpg" width="750" height="165" border="0" alt="">';
imagem4 = '<img src="http://www.facprc.pt/images/headers/header4.jpg" width="750" height="165" border="0" alt="">';
imagem5 = '<img src="http://www.facprc.pt/images/headers/header5.jpg" width="750" height="165" border="0" alt="">';
imagem6 = '<img src="http://www.facprc.pt/images/headers/header6.jpg" width="750" height="165" border="0" alt="">';



        var now = new Date();
        var hours = now.getHours();
        var psj=0;


        //18-19 day
        if (hours > 17 && hours < 20){
                document.write(imagem1)
        }

        //20-21 night
        if (hours > 19 && hours < 22){
                document.write(imagem4)
        }

        //22-4 night
        if (hours > 21 || hours < 5){
                document.write(imagem3)
        }


 	//5-6 night
        if (hours > 4 && hours < 7){
                document.write(imagem2)
        }



        //7-8 day
        if (hours > 6 && hours < 9){
                document.write(imagem1)
        }


        //9-10 day
        if (hours > 8 && hours < 11){
		document.write(imagem3)
                
        }

	//11-13 day
        if (hours > 10 && hours < 14){
		document.write(imagem2)
                
        }



	//14-16 day
        if (hours > 13 && hours < 16){
		document.write(imagem6)
                
        }

	//16-19 day
        if (hours > 15 && hours < 18){
		document.write(imagem5)
                
        }

        
//-->;

