﻿$(function() {
	var partesPath = location.pathname.split("/");
	if (partesPath[partesPath.length - 1].toLowerCase() != "imprimir") {
		$('#galeria').galleryView({
			panel_width: 450,
			panel_height: 290,
			frame_width: 105,
			frame_height: 68,
			transition_speed: 500,
			background_color: '#b3b3b3',
			border: '5px solid #b3b3b3',
			easing: 'easeOutExpo',
			pause_on_hover: true,
			nav_theme: 'custom',
			overlay_height: 35,
			filmstrip_position: 'top',
			overlay_position: 'bottom'
		});
	}
});

function alteraFonteConteudo(op) {
	var cnt = $("#cms-conteudo p");
	var tamAtual = parseInt(cnt.css("font-size").replace("px", ""));

	if (op) {
		if (tamAtual < 20) {
			tamAtual = tamAtual + 3;
			cnt.css("font-size", tamAtual + "px");
		}
	} else {
		if (tamAtual > 8) {
			tamAtual = tamAtual - 3;
			cnt.css("font-size", tamAtual + "px");
		}
	}
}
