﻿// 
// Script: Default
//
function onLoad() {
    IReVIR = document.getElementById("pensador");
    IReVIR.src = "Resources/Imagens/Pensador.png"
}

function BackgroundColorFade(id, fromColor, toColor) {
    colorFade(id, 'background', fromColor, toColor, 7, 25);
}

function ClassColorFade(target, fromColor, toColor) {
    colorFadeByTarget(target, 'color', fromColor, toColor, 10, 25);    
}

function onMouseOverPensador() {
    BackgroundColorFade ('body', '222222', '999999');
}

function onMouseOutPensador() {
    BackgroundColorFade ('body', '999999', '222222');
}

function onMouseOut() {

    var IReVIR;

    ClassColorFade(document.styleSheets[0].rules[12].style, 'ff0000', '222222');

    IReVIR = document.getElementById("IR-VIR");
    IReVIR.innerHTML = "EMERENCIAN©";

    IReVIR = document.getElementById("pensador");
    IReVIR.src = "Resources/Imagens/Pensador.png"
    
    ClassColorFade(document.styleSheets[0].rules[12].style, '222222', 'ffffff');
}

function onMouseOverPT() {

    var IReVIR;

    ClassColorFade(document.styleSheets[0].rules[12].style, 'ffffff', '222222');
    
    IReVIR = document.getElementById("IR-VIR");
    IReVIR.innerHTML = "IR & VIR";
    
    IReVIR = document.getElementById("pensador");
    IReVIR.src = "Resources/Imagens/Espiral-entrada.png"

    ClassColorFade(document.styleSheets[0].rules[12].style, '222222', 'ff0000');
}

function onMouseOverEN() {
    var IReVIR;

    ClassColorFade(document.styleSheets[0].rules[12].style, 'ffffff', '222222');
    
    IReVIR = document.getElementById("IR-VIR");
    IReVIR.innerHTML = "COME & GO";

    IReVIR = document.getElementById("pensador");
    IReVIR.src = "Resources/Imagens/Espiral-entrada.png"
    
    ClassColorFade(document.styleSheets[0].rules[12].style, '222222', 'ff0000');
}