// JavaScript Document

$(document).ready(function(){
	
	hContentSidebar();
	
	tamanhoFonte();
})


function hContentSidebar(){
	
	hContent = $('.content2').height();
	hSidebar = $('#side-bar').height();
	
	if(hContent > hSidebar){
		$('#side-bar').css('height',hContent);
	} else {
		$('.content2').css('height',hSidebar);
	}
	
}


function tamanhoFonte(){
	
	var fonte = 12;
  $('.btn-aumenta-fonte').click(function(){
		if(fonte<15){
			fonte = fonte+1;
			$('.tam-fonte').css({'font-size' : fonte+'px'});
			$('.tam-fonte a').css({'font-size' : fonte+'px'});
		}
  });
  $('.btn-diminui-fonte').click(function(){
		if(fonte>9){
			fonte = fonte-1;
			$('.tam-fonte').css({'font-size' : fonte+'px'});
			$('.tam-fonte a').css({'font-size' : fonte+'px'});
		}
  });	

}

