$(document).ready(function(){
	var altura = $(".container").height();
	$(".sidebar").height(altura);
	
// Reset Font Size
	var originalFontSize = $('html').css('font-size');

	$(".resetFont").click(function(){
		$('html').css('font-size', originalFontSize);
	});
// Increase Font Size
	$(".aumentar").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*1.1;
		if(newFontSize <= 25) {
			$('html').css('font-size', newFontSize + 'px');
			return false;
		}
		else {
			return false;	
		}
	});

// Decrease Font Size
	$(".diminuir").click(function(){
		var currentFontSize = $('html').css('font-size');
		var currentFontSizeNum = parseFloat(currentFontSize, 10);
		var newFontSize = currentFontSizeNum*0.92;
		if(newFontSize > 10.5) {
			$('html').css('font-size', newFontSize + 'px');
			return false;
		}
		else {
			return false;	
		}
	});
});

function popUp(url,x,y,hasScroll) {
  window.open(url,'popUp','status=yes,resizable=no,width='+x+',height='+y+',scrollbars='+hasScroll);
}

