﻿//Executa funcoes no carregamento ou redimensionamento
window.onload = window.onresize = function() {
    $("div#conteudo").css("margin-top", ($(window).height() - $("div#conteudo").height()) / 2);
} 
