$(function(){
	var tamanho = 12;
	//var perma = "aaaa";
	$('a.fancy').fancybox( {
		overlayOpacity:(0.8),
		showNavArrows: false,
		margin: 10
	} );
	$('a.bt_voltar').bind("click",function(){
		history.back();	
		return false;
	});
	$('a.imp').bind("click",function(){
		window.print();
		return false;
	});
	$('a.fonte_maior').bind("click",function(){
		tamanho = tamanho + 2;
		if(tamanho >18) { return false; }
		$('p').css('font-size',tamanho);
		return false;
	});
	$('a.fonte_menor').bind("click",function(){
		tamanho = tamanho - 2;
		if(tamanho<10) { return false; }
		$('p').css('font-size',tamanho);
		return false;
	});
	$('ul.nav_lateral a.title').bind('click',function(){
		
		
		if($(this).attr('rev') == $(this).attr('rel')+'_close'){
			$(this).attr('rev','');
			$(this).removeClass($(this).attr('rel')+'_close');
		} else {
			$(this).attr('rev',$(this).attr('rel')+'_close');
			$(this).addClass($(this).attr('rel')+'_close');
		}
		$(this).parent().next().slideToggle(100);
		return false;
	});
	$('#selContato').bind('change', function () {
		var base = $('base').attr('href');
		//console.log(base + 'contato/' + this.value + '/');
		location.href = base + 'ouvidoria/' + this.value + '/';
	});
});
