// JavaScript Document

jQuery(document).ready(function() {
		// Select estilizado
	$('#myselectbox').selectbox({debug: true});

	$("#font-size").fontSize({
		alvo: '#post', //Alvo(s) da atua��o do script
		tipoPaiLink: 'ul',//Guardando os links de controle em uma <ul>
		setCookie: true,//Ativando op��o de cookie
		variacoes: 5 //7 varia��es (3 para mais e 3 para menos)
	});


        $('ul.sf-menu').superfish({ 
				delay:       800,                            // one second delay on mouseout 
				speed:       'slow',                          // faster animation speed 
				autoArrows:  false
		});
$(".vis").toggle(
		   function() {
			  $(this).addClass("fec");
			  $(this).text("Fechar");
			  $(this).parent().parent().parent().find("iframe").slideDown(800);
		   },
		   function() {
			  $(this).removeClass("fec");
			  $(this).text("Visualizar");
			  $(this).parent().parent().parent().find("iframe").slideUp(800);
});

});
