﻿$(document).ready(function(){
    /*Home*/
    if($(".home").length){
        myResize();
        $(window).resize(myResize);
    }
});
function myResize(){
	var margem=($(window).height()-616)/3;
	margem=margem>0?margem:0;
	$("#content").css({marginTop:margem,marginBottom:margem});
    $("#banner").css({marginTop:margem});
}
