﻿function MenuClick(control, arg) {
    location.href = 'Default.aspx?f=' + arg;

}
function setActiveMenu(controlID) {
    var control = document.getElementById(controlID);
    if (control != null) {
        if (control.className == 'div_menu_liv2') {
            if (control.id.indexOf('allievi') >= 0)
                MenuExpand('squadre');
            if (control.id.indexOf('esordienti') >= 0)
                MenuExpand('squadre');
            if (control.id.indexOf('giovanissimi') >= 0)
                MenuExpand('squadre');

        }

        control.style.backgroundColor = 'blue';
        control.style.fontStyle = 'italic';
        control.style.fontWeight = 'bold';

    }

}
function MenuMouseOver(control) {
    control.style.borderLeftColor = 'yellow';
}
function MenuMouseOut(control) {
    control.style.borderLeftColor = '#dfdfdf';
}
function MenuExpand(menu) {
    var arr = new Array();
    switch (menu) {
        case 'squadre':
            arr[arr.length] = document.getElementById('div_menu_squadre_allievi');
            arr[arr.length] = document.getElementById('div_menu_squadre_esordienti');
            arr[arr.length] = document.getElementById('div_menu_squadre_giovanissimi');
            break;
    }

    var i;
    for (i = 0; i < arr.length; i++) {
        var control = arr[i];
        if (control.style.display == 'none' || control.style.display == '')
            control.style.display = 'block';
        else
            control.style.display = 'none';
    }

}
