function fecha_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	banner_obj.style.display = 'none';
}
function fecha_banner_timeout()
{
	window.setTimeout("fecha_banner()", 3000);
}

function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');

	banner_obj.style.left = '200px';
	banner_obj.style.top = '100px';

	banner_obj.style.display = '';

	fecha_banner_timeout();
}
$(document).ready(function(){
$(".abas:first").show();
$("#nav-aba a").click(function(){
  $(".abas").hide();
  var div = $(this).attr("href");
   $(div).show();
   return false;
 });
});
