$(function() {
  get_current_area();
})
function show_element(e) {
  document.getElementById(e).style.display='block';
}
 
function hide_element(e) {
  document.getElementById(e).style.display='none';
}

function status_verify (e) {
  var element_propert = document.getElementById(e).style.display;
  if((element_propert == 'block') || (element_propert == '')) hide_element(e); 
  if ((element_propert == 'none') || (element_propert == '')) {
    var elements = ['country', 'theme', 'sub', 'language'];
    for( var i in elements ) { hide_element(elements[i]); }
    show_element(e);
  }
}

function goback() {
	window.history.go(-1);
}

function get_current_area() {
  var area = window.location.toString().match(/apresentacao|textos|biblioteca|publicacoes|talks|artculture|banco_de_imagens|postais|pesquisas|noticias|news|mapas|africa_na_web|movies|aconteceu|agenda|recomendamos|servicos|contato/);
  $('div.menu li#'+area +' a').addClass('selected');
}

$(document).ready(function() {
  if($('#movie-player object')) {
    $('#movie-player object').height(344);
    $('#movie-player object').width(425);
    $('#movie-player object embed').height(344);
    $('#movie-player object embed').width(425);
    $('#column2 p:last').css('margin', 0);
  }
});


