﻿jQuery(document).ready(efeitos);

// CHAMA AS DEMAIS FUNCOES
function efeitos(){
	tooltip();
	popup();
	slide_panel();
};

// CRIAR TOOLTIP
function tooltip(){
	jQuery("[title]").tooltip({ 
		track: true, 
		opacity: 0.9,
		delay: 0, 
		showURL: false, 
		showBody: " - ", 
		fade: 250 
	});
};

//POPUP
function slide_panel(){
	jQuery(".btn-slide").click(function(){
		jQuery("#panel").slideToggle("slow");
		jQuery(this).toggleClass("active"); 
		return false;
	});
};

//POPUP
function popup(){
	jQuery('.popup').popupWindow({ 
		width: 550,
		centerScreen: 1
	});
};