﻿

function mainMenuOver(id) {
    switch (id) {



        case 'sante':
            document.body.className = 'body_index_sante';
            imgSecteurs.SetImageUrl('images/index_sante_08.jpg');
            imgBande.SetImageUrl('images/index_sante_09.jpg');
            imgBandeTop.SetImageUrl('images/index_sante_05.jpg');
            imgLeftStars.SetImageUrl('images/index_sante_03.jpg');
            //            document.getElementById("tdHeader").setAttribute("class", "header_bkg_sante");
            //            document.getElementById("divRight").setAttribute("class", "right_bkg_sante");
            document.getElementById("tdHeader").className = 'header_bkg_sante';
            document.getElementById("divRight").className = 'right_bkg_sante';
            imgcsdps.SetImageUrl('images/logo_csdps_sante.jpg');
            break;
        case 'alim':
            document.body.className = 'body_index_aliment';
            imgSecteurs.SetImageUrl('images/index_aliment_08.jpg');
            imgBande.SetImageUrl('images/index_aliment_09.jpg');
            imgBandeTop.SetImageUrl('images/index_aliment_05.jpg');
            imgLeftStars.SetImageUrl('images/index_aliment_03.jpg');
            document.getElementById("tdHeader").className = 'header_bkg_aliment';
            document.getElementById("divRight").className = 'right_bkg_aliment';
            imgcsdps.SetImageUrl('images/logo_csdps_alimentation.jpg');
            break;
        case 'admin':
            document.body.className = 'body_index_admin';
            imgSecteurs.SetImageUrl('images/index_admin_08.jpg');
            imgBande.SetImageUrl('images/index_admin_09.jpg');
            imgBandeTop.SetImageUrl('images/index_admin_05.jpg');
            imgLeftStars.SetImageUrl('images/index_admin_03.jpg');
            document.getElementById("tdHeader").className = 'header_bkg_admin';
            document.getElementById("divRight").className = 'right_bkg_admin';
            imgcsdps.SetImageUrl('images/logo_csdps_admin.jpg');
            break;
        case 'horti':
            document.body.className = 'body_index_horticole';
            imgSecteurs.SetImageUrl('images/index_horticole_08.jpg');
            imgBande.SetImageUrl('images/index_horticole_09.jpg');
            imgBandeTop.SetImageUrl('images/index_horticole_05.jpg');
            imgLeftStars.SetImageUrl('images/index_horticole_03.jpg');
            document.getElementById("tdHeader").className = 'header_bkg_horticole';
            document.getElementById("divRight").className = 'right_bkg_horticole';
            imgcsdps.SetImageUrl('images/logo_csdps_horticole.jpg');
            break;
        case 'off':
            document.body.className = 'body_index';
            imgSecteurs.SetImageUrl('images/index_08.jpg');
            imgBande.SetImageUrl('images/index_09.jpg');
            imgBandeTop.SetImageUrl('images/index_05.jpg');
            imgLeftStars.SetImageUrl('images/index_03.jpg');
            document.getElementById("tdHeader").className = 'header_bkg';
            document.getElementById("divRight").className = 'right_bkg';
             imgcsdps.SetImageUrl('images/logo_csdps_index.jpg');
            break;
    
    
    } 
}