function trocaNoticia(n) {
	actual = getActiveStyleSheet();
    if(n == 0) {
        document.getElementById('not_poa').style.display = 'block';
        document.getElementById('not_brasil').style.display = 'none';
        document.getElementById('not_mundo').style.display = 'none';
        
        if (actual == 'default') {
        	document.getElementById('img_tab_poa').src = 'images/not_poa_2.gif';
        	document.getElementById('img_tab_brasil').src = 'images/not_br_1.gif';
        	document.getElementById('img_tab_mundo').src = 'images/not_mundo_1.gif';
		}
		else {
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_2.gif';
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_1.gif';
        	document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_1.gif';
		}
        
    } else if (n == 1) {
        document.getElementById('not_poa').style.display = 'none';
        document.getElementById('not_brasil').style.display = 'block';
        document.getElementById('not_mundo').style.display = 'none';
        if (actual == 'default') {
	        document.getElementById('img_tab_poa').src = 'images/not_poa_1.gif';
	        document.getElementById('img_tab_brasil').src = 'images/not_br_2.gif';
	        document.getElementById('img_tab_mundo').src = 'images/not_mundo_1.gif';
        }
        else {
        	document.getElementById('img_tab_poa').src = 'images/not_poa_ac_1.gif';
	        document.getElementById('img_tab_brasil').src = 'images/not_br_ac_2.gif';
	        document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_1.gif';
        }
        
    } else if (n == 2) {
        document.getElementById('not_poa').style.display = 'none';
        document.getElementById('not_brasil').style.display = 'none';
        document.getElementById('not_mundo').style.display = 'block';
        if (actual == 'default') {
	        document.getElementById('img_tab_poa').src = 'images/not_poa_1.gif';
	        document.getElementById('img_tab_brasil').src = 'images/not_br_1.gif';
	        document.getElementById('img_tab_mundo').src = 'images/not_mundo_2.gif';
        }
        else {
        	document.getElementById('img_tab_poa').src = 'images/not_poa_ac_1.gif';
	        document.getElementById('img_tab_brasil').src = 'images/not_br_ac_1.gif';
	        document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_2.gif';
        }
    }
}

function trocaProgramacao(n) {
	actual = getActiveStyleSheet();
    if(n == 0) {
        document.getElementById('pro_show').style.display = 'block';
        document.getElementById('pro_teatro').style.display = 'none';
        document.getElementById('pro_evento').style.display = 'none';
        if (actual == 'default') {
	        document.getElementById('img_tab_show').src = 'images/ag_shows_2.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_1.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_1.gif';
        }
        else {
        	document.getElementById('img_tab_show').src = 'images/ag_shows_ac_2.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_1.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_1.gif';
        }
    } else if (n == 1) {
        document.getElementById('pro_show').style.display = 'none';
        document.getElementById('pro_teatro').style.display = 'block';
        document.getElementById('pro_evento').style.display = 'none';
        if (actual == 'default') {
	        document.getElementById('img_tab_show').src = 'images/ag_shows_1.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_2.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_1.gif';
        }
        else {
        	document.getElementById('img_tab_show').src = 'images/ag_shows_ac_1.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_2.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_1.gif';
        }
    } else if (n == 2) {
        document.getElementById('pro_show').style.display = 'none';
        document.getElementById('pro_teatro').style.display = 'none';
        document.getElementById('pro_evento').style.display = 'block';
        if (actual == 'default') {
	        document.getElementById('img_tab_show').src = 'images/ag_shows_1.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_1.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_2.gif';
        }
        else {
        	document.getElementById('img_tab_show').src = 'images/ag_shows_ac_1.gif';
	        document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_1.gif';
	        document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_2.gif';
        }
    }
}
