$(function() {
		
  var alturapagina = pageHeight();
  var alturatopo = $("#cemporcentotop").outerHeight(true);
  var alturarodape = $("#cemporcentobottom").height();
  
  var alturasite = alturatopo + alturarodape;
  if($("#interna").length > 0) {
    alturasite += $("#conteudo").outerHeight(true);
  }
  
  if(alturapagina > alturasite) {
    $("#cemporcentobottom").css({
      "position" : "absolute",
      "bottom" : "0"
    });
  }
  
  $("#menu").supersubs({ 
    minWidth:    8,   
    maxWidth:    8,   
    extraWidth:  1
  }).superfish({
    dropShadows : false,
    delay: 0,
    speed: 'fast'
  });
});


// retorna a altuna do viewport
function pageHeight() {
  return  window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ?  document.documentElement.clientHeight : document.body != null? document.body.clientHeight : null;
}