// JS padrao dos sites


function getPreferredStyleSheet() {
	var i, a;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if(a.getAttribute("rel").indexOf("style") != -1
		&& a.getAttribute("rel").indexOf("alt") == -1
		&& a.getAttribute("title")
		) return a.getAttribute("title");
	}
	return null;
}



// Para fazer funcionar o menu do site em IE
function IEHoverPseudo() {
	var navItems = document.getElementById("menucss").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		navItems[i].onmouseover=function() {
			this.oldClass = this.className; this.className += " over";
		}
		navItems[i].onmouseout=function() {
			this.className = this.oldClass;
		}
	}
}


// Estabelece o aumento das fontes	
function zoom(how) {
	document.getElementById("container").style.fontSize=how+"px";
	document.getElementById("conteudo").style.fontSize=how+"px";
	
	createCookie("tamanho", how, 365);
}


function getActiveStyleSheet() {
	var i, a;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if(a.getAttribute("rel").indexOf("style") != -1
		&& a.getAttribute("title")
		&& !a.disabled) return a.getAttribute("title");
	}
	return null;
}


function changeActiveStyleSheet() {
	var style, other, path;
	
	path = 'http://lsisweb2.procempa.com.br/tpwb/portoweb2007/';
	
	style = getActiveStyleSheet();
	
	if (style == "default") {
		setActiveStyleSheet("acessivel");
		
		if (document.getElementById('img_tab_poa').src == path + 'images/not_poa_2.gif')
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_2.gif';
		else 
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_1.gif';
			
		if (document.getElementById('img_tab_brasil').src == path + 'images/not_br_1.gif')
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_1.gif';
		else
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_2.gif';
			
		if (document.getElementById('img_tab_mundo').src == path + 'images/not_mundo_1.gif')
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_1.gif';
		else 
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_2.gif';
			
		/**/
		
		if (document.getElementById('img_tab_show').src == path + 'images/ag_shows_2.gif')
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_2.gif';
		else 
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_1.gif';
		
		if (document.getElementById('img_tab_teatro').src == path + 'images/ag_teatro_2.gif')
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_2.gif';
		else 
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_1.gif';
		
		if (document.getElementById('img_tab_evento').src == path + 'images/ag_eventos_2.gif')
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_2.gif';
		else 
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_1.gif';
		
	}
	else {
		setActiveStyleSheet("default");
		if (document.getElementById('img_tab_poa').src == path + 'images/not_poa_ac_2.gif')
			document.getElementById('img_tab_poa').src = 'images/not_poa_2.gif';
		else 
			document.getElementById('img_tab_poa').src = 'images/not_poa_1.gif';
			
		if (document.getElementById('img_tab_brasil').src == path + 'images/not_br_ac_1.gif')
			document.getElementById('img_tab_brasil').src = 'images/not_br_1.gif';
		else
			document.getElementById('img_tab_brasil').src = 'images/not_br_2.gif';
			
		if (document.getElementById('img_tab_mundo').src == path + 'images/not_mundo_ac_1.gif')
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_1.gif';
		else 
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_2.gif';
			
		/**/
		
		if (document.getElementById('img_tab_show').src == path + 'images/ag_shows_ac_2.gif')
			document.getElementById('img_tab_show').src = 'images/ag_shows_2.gif';
		else 
			document.getElementById('img_tab_show').src = 'images/ag_shows_1.gif';
		
		if (document.getElementById('img_tab_teatro').src == path + 'images/ag_teatro_ac_2.gif')
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_2.gif';
		else 
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_1.gif';
		
		if (document.getElementById('img_tab_evento').src == path + 'images/ag_eventos_ac_2.gif')
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_2.gif';
		else 
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_1.gif';
	}
}

function changeSize() {
	var actualsize = document.getElementById("container").style.fontSize;
	
	if (actualsize == '11px') {
		document.getElementById("plus").style.visibility = 'hidden';
		document.getElementById("menos").style.visibility = 'visible';
		zoom('20');
	}
	else {
		document.getElementById("plus").style.visibility = 'visible';
		document.getElementById("menos").style.visibility = 'hidden';
		zoom('11');
	}

}

function setActiveStyleSheet(title) {
	var i, a, main;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
		if(a.getAttribute("rel").indexOf("style") != -1
		&& a.getAttribute("title")) {
			a.disabled = true;
			if(a.getAttribute("title") == title) a.disabled = false;
			}
		}
}


function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}


function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}


function trocaEstiloMaisAbas(style,troca) {
	/*função aplicada dentro da funçao window.onload e changeActiveStylesheet*/
	var path = 'http://lsisweb2.procempa.com.br/tpwb/portoweb2007/';
	if (style == "default") {
		if (troca) setActiveStyleSheet("acessivel");
		
		if (document.getElementById('img_tab_poa').src == path + 'images/not_poa_2.gif')
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_2.gif';
		else 
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_1.gif';
			
		if (document.getElementById('img_tab_brasil').src == path + 'images/not_br_1.gif')
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_1.gif';
		else
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_2.gif';
			
		if (document.getElementById('img_tab_mundo').src == path + 'images/not_mundo_1.gif')
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_1.gif';
		else 
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_2.gif';
			
		/**/
		
		if (document.getElementById('img_tab_show').src == path + 'images/ag_shows_2.gif')
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_2.gif';
		else 
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_1.gif';
		
		if (document.getElementById('img_tab_teatro').src == path + 'images/ag_teatro_2.gif')
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_2.gif';
		else 
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_1.gif';
		
		if (document.getElementById('img_tab_evento').src == path + 'images/ag_eventos_2.gif')
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_2.gif';
		else 
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_1.gif';
		
	}
	else {
		if (troca) setActiveStyleSheet("default");
		if (document.getElementById('img_tab_poa').src == path + 'images/not_poa_ac_2.gif')
			document.getElementById('img_tab_poa').src = 'images/not_poa_2.gif';
		else 
			document.getElementById('img_tab_poa').src = 'images/not_poa_1.gif';
			
		if (document.getElementById('img_tab_brasil').src == path + 'images/not_br_ac_1.gif')
			document.getElementById('img_tab_brasil').src = 'images/not_br_1.gif';
		else
			document.getElementById('img_tab_brasil').src = 'images/not_br_2.gif';
			
		if (document.getElementById('img_tab_mundo').src == path + 'images/not_mundo_ac_1.gif')
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_1.gif';
		else 
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_2.gif';
			
		/**/
		
		if (document.getElementById('img_tab_show').src == path + 'images/ag_shows_ac_2.gif')
			document.getElementById('img_tab_show').src = 'images/ag_shows_2.gif';
		else 
			document.getElementById('img_tab_show').src = 'images/ag_shows_1.gif';
		
		if (document.getElementById('img_tab_teatro').src == path + 'images/ag_teatro_ac_2.gif')
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_2.gif';
		else 
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_1.gif';
		
		if (document.getElementById('img_tab_evento').src == path + 'images/ag_eventos_ac_2.gif')
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_2.gif';
		else 
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_1.gif';
	}
}


window.onload = function() {
	IEHoverPseudo();
	var cookie = readCookie("style");
	// var title = readCookie("style");
	var size = readCookie("tamanho");

	//  var title = cookie ? cookie : getPreferredStyleSheet();
	var style = cookie ? cookie : getPreferredStyleSheet();
	if (style == '' || style == null || style.lenght <= 2 || style == 'null') {
		style = 'default';
	}
	if (size == '' || size == null || size == 'null') {
		size = '11';
	}
	
	if (style == "acessivel") {
		setActiveStyleSheet("acessivel");
		var path = 'http://lsisweb2.procempa.com.br/tpwb/portoweb2007/';
		if (document.getElementById('img_tab_poa').src == path + 'images/not_poa_2.gif')
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_2.gif';
		else 
			document.getElementById('img_tab_poa').src = 'images/not_poa_ac_1.gif';
			
		if (document.getElementById('img_tab_brasil').src == path + 'images/not_br_1.gif')
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_1.gif';
		else
			document.getElementById('img_tab_brasil').src = 'images/not_br_ac_2.gif';
			
		if (document.getElementById('img_tab_mundo').src == path + 'images/not_mundo_1.gif')
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_1.gif';
		else 
			document.getElementById('img_tab_mundo').src = 'images/not_mundo_ac_2.gif';
			
		/**/
		
		if (document.getElementById('img_tab_show').src == path + 'images/ag_shows_2.gif')
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_2.gif';
		else 
			document.getElementById('img_tab_show').src = 'images/ag_shows_ac_1.gif';
		
		if (document.getElementById('img_tab_teatro').src == path + 'images/ag_teatro_2.gif')
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_2.gif';
		else 
			document.getElementById('img_tab_teatro').src = 'images/ag_teatro_ac_1.gif';
		
		if (document.getElementById('img_tab_evento').src == path + 'images/ag_eventos_2.gif')
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_2.gif';
		else 
			document.getElementById('img_tab_evento').src = 'images/ag_eventos_ac_1.gif';
	}
	
	zoom(size);  
}

window.onunload = function(e) {
  var title = getActiveStyleSheet();
  createCookie("style", title, 365);
}


var cookie = readCookie("style");
var title = cookie ? cookie : getPreferredStyleSheet();
setActiveStyleSheet(title);
