﻿var MenuAttivo = '';

function DisabilitaSelezione(id) {
    var target = document.getElementById(id);

    if (typeof target.onselectstart != "undefined") // IE route
        target.onselectstart = function() { return false }
    else if (typeof target.style.MozUserSelect != "undefined") // Firefox route
        target.style.MozUserSelect = "none"
    else // All other route (Opera)
        target.onmousedown = function() { return false }
    //            if (typeof target.onselectstart != "undefined") // IE route
    //                target.style.cursor = "hand"
    //            else
    //                target.style.cursor = "pointer"
}

function MouseOver(id) {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    colcorr = document.getElementById(id).style.backgroundColor;

    if (id != MenuAttivo)
        if ((colcorr == bianco) || (colcorr == biancoRGB) ||
                (colcorr == ''))
        document.getElementById(id).style.backgroundColor = '#cc6666';
}

function MouseOut(id) {
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    colcorr = document.getElementById(id).style.backgroundColor;

    if (id != MenuAttivo)
        if ((colcorr == rossoscuro) || (colcorr = rossoscuroRGB))
        document.getElementById(id).style.backgroundColor = '#ffffff';
}

function MouseClickServizio() {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    bottonecorrente = 'SubBottoneServizio';
    pannellocorrente = 'PannelloMenuServizio';

    OldMenuAttivo = MenuAttivo;
    if (OldMenuAttivo == bottonecorrente)
        MenuAttivo = '';
    else
        MenuAttivo = bottonecorrente;

    // Colore corrente
    ColoreCorrente = document.getElementById(bottonecorrente).style.backgroundColor;

    // Reset visibilità degli altri pannelli
    document.getElementById('PannelloMenuLiturgia').style.visibility = 'hidden';
    document.getElementById('PannelloMenuTestimonianza').style.visibility = 'hidden';
    document.getElementById('PannelloMenuComunione').style.visibility = 'hidden';
    document.getElementById('PannelloMenuOratorio').style.visibility = 'hidden';

    // Reset colore old menu
    if (OldMenuAttivo != '')
        document.getElementById(OldMenuAttivo).style.backgroundColor = bianco;

    // Colore bottone
    if (MenuAttivo == '')
        document.getElementById(bottonecorrente).style.backgroundColor = bianco;
    else
        document.getElementById(bottonecorrente).style.backgroundColor = '#ffcc99';

    // Visibilità menu
    if (document.getElementById(pannellocorrente).style.visibility == 'visible')
        document.getElementById(pannellocorrente).style.visibility = 'hidden';
    else
        document.getElementById(pannellocorrente).style.visibility = 'visible';
}

function MouseClickLiturgia() {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    bottonecorrente = 'SubBottoneLiturgia';
    pannellocorrente = 'PannelloMenuLiturgia';

    OldMenuAttivo = MenuAttivo;
    if (OldMenuAttivo == bottonecorrente)
        MenuAttivo = '';
    else
        MenuAttivo = bottonecorrente;

    // Colore corrente
    ColoreCorrente = document.getElementById(bottonecorrente).style.backgroundColor;

    // Reset visibilità degli altri pannelli
    document.getElementById('PannelloMenuServizio').style.visibility = 'hidden';
    document.getElementById('PannelloMenuTestimonianza').style.visibility = 'hidden';
    document.getElementById('PannelloMenuComunione').style.visibility = 'hidden';
    document.getElementById('PannelloMenuOratorio').style.visibility = 'hidden';

    // Reset colore old menu
    if (OldMenuAttivo != '')
        document.getElementById(OldMenuAttivo).style.backgroundColor = bianco;

    // Colore bottone
    if (MenuAttivo == '')
        document.getElementById(bottonecorrente).style.backgroundColor = bianco;
    else
        document.getElementById(bottonecorrente).style.backgroundColor = '#ffcc99';

    // Visibilità menu
    if (document.getElementById(pannellocorrente).style.visibility == 'visible')
        document.getElementById(pannellocorrente).style.visibility = 'hidden';
    else
        document.getElementById(pannellocorrente).style.visibility = 'visible';
}

function MouseClickTestimonianza() {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    bottonecorrente = 'SubBottoneTestimonianza';
    pannellocorrente = 'PannelloMenuTestimonianza';

    OldMenuAttivo = MenuAttivo;
    if (OldMenuAttivo == bottonecorrente)
        MenuAttivo = '';
    else
        MenuAttivo = bottonecorrente;

    // Colore corrente
    ColoreCorrente = document.getElementById(bottonecorrente).style.backgroundColor;

    // Reset visibilità degli altri pannelli
    document.getElementById('PannelloMenuServizio').style.visibility = 'hidden';
    document.getElementById('PannelloMenuLiturgia').style.visibility = 'hidden';
    document.getElementById('PannelloMenuComunione').style.visibility = 'hidden';
    document.getElementById('PannelloMenuOratorio').style.visibility = 'hidden';

    // Reset colore old menu
    if (OldMenuAttivo != '')
        document.getElementById(OldMenuAttivo).style.backgroundColor = bianco;

    // Colore bottone
    if (MenuAttivo == '')
        document.getElementById(bottonecorrente).style.backgroundColor = bianco;
    else
        document.getElementById(bottonecorrente).style.backgroundColor = '#ffcc99';

    // Visibilità menu
    if (document.getElementById(pannellocorrente).style.visibility == 'visible')
        document.getElementById(pannellocorrente).style.visibility = 'hidden';
    else
        document.getElementById(pannellocorrente).style.visibility = 'visible';
}

function MouseClickComunione() {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    bottonecorrente = 'SubBottoneComunione';
    pannellocorrente = 'PannelloMenuComunione';

    OldMenuAttivo = MenuAttivo;
    if (OldMenuAttivo == bottonecorrente)
        MenuAttivo = '';
    else
        MenuAttivo = bottonecorrente;

    // Colore corrente
    ColoreCorrente = document.getElementById(bottonecorrente).style.backgroundColor;

    // Reset visibilità degli altri pannelli
    document.getElementById('PannelloMenuServizio').style.visibility = 'hidden';
    document.getElementById('PannelloMenuLiturgia').style.visibility = 'hidden';
    document.getElementById('PannelloMenuTestimonianza').style.visibility = 'hidden';
    document.getElementById('PannelloMenuOratorio').style.visibility = 'hidden';

    // Reset colore old menu
    if (OldMenuAttivo != '')
        document.getElementById(OldMenuAttivo).style.backgroundColor = bianco;

    // Colore bottone
    if (MenuAttivo == '')
        document.getElementById(bottonecorrente).style.backgroundColor = bianco;
    else
        document.getElementById(bottonecorrente).style.backgroundColor = '#ffcc99';

    // Visibilità menu
    if (document.getElementById(pannellocorrente).style.visibility == 'visible')
        document.getElementById(pannellocorrente).style.visibility = 'hidden';
    else
        document.getElementById(pannellocorrente).style.visibility = 'visible';
}

function MouseClickOratorio() {
    bianco = '#ffffff';
    biancoRGB = "rgb(255, 255, 255)";
    arancio = '#ffcc99';
    arancioRGB = "rgb(255, 204, 153)";
    rossoscuro = '#cc6666';
    rossoscuroRGB = "rgb(204, 102, 102)";
    bottonecorrente = 'BottoneOratorio';
    pannellocorrente = 'PannelloMenuOratorio';

    OldMenuAttivo = MenuAttivo;
    if (OldMenuAttivo == bottonecorrente)
        MenuAttivo = '';
    else
        MenuAttivo = bottonecorrente;

    // Colore corrente
    ColoreCorrente = document.getElementById(bottonecorrente).style.backgroundColor;

    // Reset visibilità degli altri pannelli
    document.getElementById('PannelloMenuServizio').style.visibility = 'hidden';
    document.getElementById('PannelloMenuLiturgia').style.visibility = 'hidden';
    document.getElementById('PannelloMenuTestimonianza').style.visibility = 'hidden';
    document.getElementById('PannelloMenuComunione').style.visibility = 'hidden';

    // Reset colore old menu
    if (OldMenuAttivo != '')
        document.getElementById(OldMenuAttivo).style.backgroundColor = bianco;

    // Colore bottone
    if (MenuAttivo == '')
        document.getElementById(bottonecorrente).style.backgroundColor = bianco;
    else
        document.getElementById(bottonecorrente).style.backgroundColor = '#ffcc99';

    // Visibilità menu
    if (document.getElementById(pannellocorrente).style.visibility == 'visible')
        document.getElementById(pannellocorrente).style.visibility = 'hidden';
    else
        document.getElementById(pannellocorrente).style.visibility = 'visible';
}

// ----------------- GESTIONE NEWS -----------------
function News(tipomovimento) {
    var IndiceNews;
    var Id;

    if (typeof News.counter == 'undefined') {
        News.counter = 1;
    }

    if (tipomovimento == '+') {
        News.counter++;

        if (News.counter >= 5)
            News.counter = 1;
    }

    if (tipomovimento == '-') {
        News.counter--;

        if (News.counter <= 0)
            News.counter = 4;
    }

    IndiceNews = News.counter;

    Id = 'news' + String(IndiceNews)
    
    document.getElementById('news1').style.display = 'none';
    document.getElementById('news2').style.display = 'none';
    document.getElementById('news3').style.display = 'none';
    document.getElementById('news4').style.display = 'none';

    document.getElementById(Id).style.display = 'block';

}

//--------------- Script per pagine HTML -------------------

function Div_ShowHide(id) {
    var corrente;

    corrente = document.getElementById(id).style.display;

    if (corrente == 'block')
        document.getElementById(id).style.display = 'none';
    else
        document.getElementById(id).style.display = 'block';
}

function Div_Show_News(id) {
    var corrente;

    // alert(document.getElementById("news1").style.display);

    document.getElementById("news1").style.display = 'none';
    document.getElementById("news2").style.display = 'none';
    document.getElementById("news3").style.display = 'none';
    document.getElementById("news4").style.display = 'none';
    
    document.getElementById(id).style.display = 'block';
}

