$(document).ready(function() {
	// Google Analytics
	try {
		var pageTracker = _gat._getTracker("UA-10724846-1");
		pageTracker._trackPageview();
	} catch(err) {}
	
	// Tell a Friend Pop Up
	$(".popup").click(function(){
		var janela;
		var url = $(this).attr("href");
		var name = "pacotes";
		var width = 700;
		var height = 510;
		var top = (screen.availHeight - height) / 2;
		var left = (screen.availWidth - width) / 2;
		var scroll = 'no';
		var resize = 'no';
		pop = window.open(url, name, 'width=' + width + ', height=' + height + ', top=' + top + ', left=' + left + ', scrollbars=' + scroll + ', resizable=' +  resize + ', statusbar=no');
		pop.focus();
		return false;
	});
	
	//Validate
	$(".validate").each(function(){
		$(this).validate();
	});
});


