﻿function MarkCircolare(theControl) {
    $(theControl).find('table').css('background-color', '#EAEAEA');
    $(theControl).find('table').css('color', '#4E4E4E');
    $(theControl).find('div').css('background-position', '0px 0px');

    //amministrazione
    if ($(theControl).attr('class').indexOf('amministrazione') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //comunicazione
    if ($(theControl).attr('class').indexOf('comunicazione') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //energia
    if ($(theControl).attr('class').indexOf('energia') != -1) {
        $(theControl).find('span').css('color', '#FFCC32');
    }
    //generali
    if ($(theControl).attr('class').indexOf('generali') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //giuridico
    if ($(theControl).attr('class').indexOf('giuridico') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //idrico
    if ($(theControl).attr('class').indexOf('idrico') != -1) {
        $(theControl).find('span').css('color', '#668DB4');
    }
    //lavoro
    if ($(theControl).attr('class').indexOf('lavoro') != -1) {
        $(theControl).find('span').css('color', '#620011');
    }
    //sefit
    if ($(theControl).attr('class').indexOf('sefit') != -1) {
        $(theControl).find('span').css('color', '#9AC7C2');
    }
    //telecomunicazioni
    if ($(theControl).attr('class').indexOf('telecomunicazioni') != -1) {
        $(theControl).find('span').css('color', '#66CBFF');
    }
    //tributario
    if ($(theControl).attr('class').indexOf('tributario') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
}

function UnMarkCircolare(theControl) {
    $(theControl).find('table').css('background-color', 'Transparent');
    $(theControl).find('table').css('color', '#7A7676');
    $(theControl).find('div').css('background-position', '0px -44px');
    $(theControl).find('span').css('color', '#7A7676');
}


function MarkNews(theControl) {
    $(theControl).find('table').css('background-color', '#EAEAEA');
    $(theControl).find('table').css('color', '#4E4E4E');
    $(theControl).find('div').css('background-position', '0px 0px');
}

function UnMarkNews(theControl) {
    $(theControl).find('table').css('background-color', 'Transparent');
    $(theControl).find('table').css('color', '#7A7676');
    $(theControl).find('div').css('background-position', '0px -44px');
}


function MarkCircolareInterna(theControl) {
    $(theControl).find('table').css('background-color', '#EAEAEA');
    $(theControl).find('table').css('color', '#4E4E4E');
    $(theControl).find('div').css('background-position', '0px 0px');

    //amministrazione
    if ($(theControl).attr('class').indexOf('amministrazione') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //comunicazione
    if ($(theControl).attr('class').indexOf('comunicazione') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //energia
    if ($(theControl).attr('class').indexOf('energia') != -1) {
        $(theControl).find('span').css('color', '#FFCC32');
    }
    //generali
    if ($(theControl).attr('class').indexOf('generali') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //giuridico
    if ($(theControl).attr('class').indexOf('giuridico') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
    //idrico
    if ($(theControl).attr('class').indexOf('idrico') != -1) {
        $(theControl).find('span').css('color', '#668DB4');
    }
    //lavoro
    if ($(theControl).attr('class').indexOf('lavoro') != -1) {
        $(theControl).find('span').css('color', '#620011');
    }
    //sefit
    if ($(theControl).attr('class').indexOf('sefit') != -1) {
        $(theControl).find('span').css('color', '#9AC7C2');
    }
    //telecomunicazioni
    if ($(theControl).attr('class').indexOf('telecomunicazioni') != -1) {
        $(theControl).find('span').css('color', '#66CBFF');
    }
    //tributario
    if ($(theControl).attr('class').indexOf('tributario') != -1) {
        $(theControl).find('span').css('color', '#FF3234');
    }
}

function UnMarkCircolareInterna(theControl) {
    $(theControl).find('table').css('background-color', 'Transparent');
    $(theControl).find('table').css('color', '#7A7676');
    $(theControl).find('div').css('background-position', '0px -44px');
    $(theControl).find('span').css('color', '#7A7676');
}

function Mark(theControl) {
    $(theControl).find('table').css('background-color', '#EAEAEA');
    $(theControl).find('table').css('color', '#4E4E4E');
    $(theControl).find('div').css('background-position', '0px 0px');
}

function UnMark(theControl) {
    $(theControl).find('table').css('background-color', 'Transparent');
    $(theControl).find('table').css('color', '#7A7676');
    $(theControl).find('div').css('background-position', '0px -44px');
}

