$(function() {
 $('div.second_level').hide();
 
 var id_href = /^#(.*)/;
 $('#top_level a').hover(function () {
  $('div.second_level').hide();
  $('#top_level a').css('background-color', '#fff');   
  $('#top_level a').attr("id", "nocurrent");
  $(this).attr("id", "current");
  //$(this).css('padding', '90px 1px 10px 20px');  
  if (id_href.test($(this).attr('href'))) {
   $($(this).attr('href')).show();     
   //$(this).css('background-color', '#BBB');  
   //$(this).attr("id", "current");

   window.top.document.body.rows = '' + 
    ($('#top_level').height() + $($(this).attr('href')).height()) + ',*';     
   return false;
  } else
   window.top.document.body.rows = '' + $('#top_level').height() + ',*';
 });
});


$(function() {
 
 var id_href = /^#(.*)/;
 $('#cursosbar a').hover(function () {
  $('#cursosbar a').css('background-color', '#fff');   
  $('#cursosbar a').attr("id", "nocurrent");
  $(this).attr("id", "current");
  //$(this).css('padding', '90px 1px 10px 20px');  
  if (id_href.test($(this).attr('href'))) {
   $($(this).attr('href')).show();     
   //$(this).css('background-color', '#BBB');  
   //$(this).attr("id", "current");

   window.top.document.body.rows = '' + 
    ($('#top_level').height() + $($(this).attr('href')).height()) + ',*';     
   return false;
  } else
   window.top.document.body.rows = '' + $('#top_level').height() + ',*';
 });
});