﻿function mostraDiferenciais() {
    document.getElementById("subdiferenciais").style.display = "";
    document.getElementById("nossosDiferenciais").style.backgroundColor = "#344257";
    document.getElementById("nossosDiferenciais").style.color = "#FFFFFF";
}

function escondeDiferenciais() {
    document.getElementById("subdiferenciais").style.display = "none";
    document.getElementById("nossosDiferenciais").style.backgroundColor = "";
    document.getElementById("nossosDiferenciais").style.color = "";
}

function mostraEspecialidades() {
    document.getElementById("subespecialidades").style.display = "";
    document.getElementById("especialidades").style.backgroundColor = "#344257";
    document.getElementById("especialidades").style.color = "#FFFFFF";
}

function escondeEspecialidades() {
    document.getElementById("subespecialidades").style.display = "none";
    document.getElementById("especialidades").style.backgroundColor = "";
    document.getElementById("especialidades").style.color = "";
}

function randonBanner(){

    hoje = new Date()
    numero_de_imagens = 5
    segundos = hoje.getSeconds()
    numero = segundos % numero_de_imagens

    if (numero == 0){
        banner = "swf/banner_seguranca.swf"
    }

    if (numero == 1){
        banner = "swf/banner_tranquilidade.swf"
    }

    if (numero == 2) {
        banner = "swf/banner_rapidez.swf"
    }

    if (numero == 3) {
        banner = "swf/banner_autonomia.swf"
    }

    if (numero == 4) {
        banner = "swf/banner_gestao.swf"
    }

    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="614" height="88" title="banner">');
    document.write('<param name="movie" value="' + banner + '"/>');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="wmode" value="transparent" />');
    document.write('<embed src="' + banner + '" quality="high" wmode="opaque" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="614" height="88"></embed>');
    document.write('</object>');
    
}