
function showBg(){             
  var largura = document.body.clientWidth;
  var altura = document.body.clientHeight;
  $('#fundoblack').css('height',1200);
  $('body').css('overflow','hidden');
  $('#fundoblack').fadeIn('slow');
  $('#menuopc').fadeIn('slow');
};

function hideBg(){
   $('#menuopc').fadeOut('slow');
   $('#fundoblack').fadeOut('slow');
   $('#arearevista').fadeOut('fast');
   $('iframe#MyIframe').attr('src', '');
   $('body').css('overflow','show');
  
};

function showBgImg(){
  var largura = document.body.clientWidth;
  var altura = document.body.clientHeight;
  $('#fundoblack').css('height',1200);
  $('body').css('overflow','hidden');	               
  $('#fundoblack').fadeIn('slow');
  $('#menushowimage').fadeIn('slow');
  
};

function hideBgImg(){
   $('#menushowimage').fadeOut('slow');
   $('#fundoblack').fadeOut('slow');
   $('body').css('overflow','show');
};

function showPort(){             
  var largura = document.body.clientWidth;
  var altura = document.body.clientHeight;
  $('#fundoblack').css('height', 1200);
  $('body').css('overflow','hidden');
  $('#fundoblack').fadeIn('slow');
  $('#menuopc').fadeIn('slow');
};

function hidePort(){
   $('#menuopc').fadeOut('slow');
   $('#fundoblack').fadeOut('slow');
   $('body').css('overflow','show');
   
};


