$(document).ready(function(){
	//Increase-Decrease font Resorts Brasil
	$("#res_brasil #increase").click(function(){
		$("#panel *").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	$("#res_brasil #decrease").click(function(){
		$("#panel *").css({
			fontSize: '1.3em'				  
		});
		return false
	});
	
	//Increase-Decrease font Resorts Brasil
	$("#res_certificados #increase").click(function(){
		$("#content .scroll p").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	$("#res_certificados #decrease").click(function(){
		$("#content .scroll p").css({
			fontSize: '1.3em'				  
		});
		return false
	});
	
	//Increase-Decrease font Resorts Brasil
	$("#pg_informations #increase").click(function(){
		$("#content h3, #content p").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	
	$("#pg_informations #decrease").click(function(){
		$("#content h3, #content p").css({
			fontSize: '1.3em'				  
		});
		return false
	});
	
	//Increase-Decrease font Banco de Curriculos
	$("#pg_curriculos #increase").click(function(){
		$("#content > p").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	
	$("#pg_curriculos #decrease").click(function(){
		$("#content > p").css({
			fontSize: '1.3em'				  
		});
		return false
	});





	//Increase-Decrease font Detalhe Noticia
	$("#pg_noticias #increase").click(function() {
	$("#fullnotice > span, #fullnotice > h2, #fullnotice > p, .scroll p").css({
	    fontSize: '1.5em'
	  });
	  return false
	});

	$("#pg_noticias #decrease").click(function() {
	$("#fullnotice > span,#fullnotice > h2, #fullnotice > p, .scroll p").css({
	    fontSize: '1.3em'
	  });
	  return false
	});
	
	
	
	//Increase-Decrease font Detalhe Ofertas
	$("#pg_detalhe_ofertas #increase").click(function() {
	$("h3, p, span").css({
	    fontSize: '15px'
	  });
	  return false
	});

	$("#pg_detalhe_ofertas #decrease").click(function() {
	$("h3, p, span").css({
	    fontSize: '11px'
	  });
	  return false
	});
	
	
	
	
	//Increase-Decrease font Reserva Online
	$("#pg_online_booking #increase").click(function(){
		$("#content > h3 ,#content > p").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	
	$("#pg_online_booking #decrease").click(function(){
		$("#content > p").css({
			fontSize: '1.3em'				  
		});
		$("#content > h3 ").css({
			fontSize: '1.4em'
		});
		return false
	});
	
	//Increase-Decrease font Resultados de Busca
	$("#pg_search_results #increase").click(function(){
		$("#content > ul li").css({
			fontSize: '1.4em'				  
		});
		$(".results p").css({
			fontSize: '1.4em'				  
		});
		return false
	});
	
	$("#pg_search_results #decrease").click(function(){
		$("#content > ul li, .results p").css({
			fontSize: '1.2em'				  
		});
		return false
	});
	
	//Increase-Decrease font Por que visitar um resort
	$("#pg_whyvisit #increase").click(function(){
		$("#content h3, .scroll p").css({
			fontSize: '1.5em'				  
		});
		return false
	});
	
	$("#pg_whyvisit #decrease").click(function(){
		$("#content h3, .scroll p").css({
			fontSize: '1.3em'				  
		});
		return false
	});




	//Increase-Decrease font pg_destinos
	$("#pg_destinos #increase").click(function() {
	$("#content h3, .scroll p").css({
	    fontSize: '1.5em'
	  });
	  return false
	});

	$("#pg_destinos #decrease").click(function() {
	$("#content h3, .scroll p").css({
	    fontSize: '1.3em'
	  });
	  return false
	});






	
	
	
	/*
	$("#motivos li a").hover(function(){
		$(this).fadeOut(100);
		$(this).fadeIn(500);
	});*/
	
	$(".print").click(function(){
    		window.print();
    		return false
		});

});