function zoom(arg){
	jQuery.noConflict();
	jQuery('#corpo').css('fontSize', (arg=='+')?'1.2em':'1em');
}

function switchStyleSheet(sheet) {
	jQuery.noConflict();
	var data = new Date();
	data.setTime(data.getTime() + (365 * 24 * 60 * 60 * 1000));
	
	jQuery('link[rel*=style][title]').each(function(i)	{
		this.disabled = true;
		if (this.getAttribute('href') == sheet) this.disabled = false;
	});
	jQuery.cookie('estilo', sheet, {expires: data});
}

function init() {
	jQuery.noConflict();
	jQuery('#slcSites').change(function() {
		try {
			if (this.value!='') window.open(this.value);
		} catch(e) {}
		this.selectedIndex = 0;
	});
	jQuery('.acessibilidade-texto-normal').click(function(e){e.preventDefault();	zoom('-')});
	jQuery('.acessibilidade-texto-grande').click(function(e){e.preventDefault();	zoom('+')});
	jQuery('.acessibilidade-fundo-preto').click(function(e){e.preventDefault(); switchStyleSheet('estilos/geral-preto.css')});
	jQuery('.acessibilidade-fundo-pastel').click(function(e){e.preventDefault(); switchStyleSheet('estilos/geral-pastel.css')});
	jQuery('.acessibilidade-fundo-padrao').click(function(e){e.preventDefault(); switchStyleSheet('estilos/geral.css')});
	var c = jQuery.cookie('estilo');
	if (c) switchStyleSheet(c);
	
	/* cantos acesso seguro */
	if (jQuery('.loginOuvidoria').length > 0) jQuery('.loginOuvidoria').corner();	
}
jQuery.noConflict();
jQuery(document).ready(init);
jQuery.noConflict();