function images_Alternada (){
hoje = new Date()
numero_de_textos = 4
segundos = hoje.getSeconds()
numero = segundos % numero_de_textos
if (numero == 0){
texto = ("1")
}
if (numero == 01){
texto = ("2")
}
if (numero == 02){
texto = ("<%server%>")
}
if (numero == 03){
texto = ("4")
}
document.write('' + texto +'')
}


/*Fundo da Pagina*/
function fundo(){
hoje = new Date()
numero_de_textos = 3
segundos = hoje.getSeconds()
numero = segundos % numero_de_textos
if (numero == 0){
texto = ("<div style='background-image:url(http://www.artemaisArtesanato.com.br/br/images/div-fundo-decorado0.gif)'>")
}
if (numero == 01){
texto = ("<div style='background-image:url(http://www.artemaisArtesanato.com.br/br/images/div-fundo-decorado1.gif)'>")
}
if (numero == 02){
texto = ("<div style='background-image:url(http://www.artemaisArtesanato.com.br/br/images/div-fundo-decorado2.gif)'>")
}
document.write('' + texto +'')
}