function tog(id) {
   var a = document.getElementById(id);
   if(a.style.display == 'block')
      a.style.display = 'none';
   else
      a.style.display = 'block';
}

$(function(){

   $("li.top").mouseover(function() {
   
      // var pos = findPos(this);
      var thisSection = $(this).find("a.main").attr('id').slice(1);
      $("#t" + Section).removeClass("selected");
      $("#t" + thisSection).addClass("selected");
      
   
   }).mouseout(function() {
   
      var thisSection = $(this).find("a.main").attr('id').slice(1);
      $("#t" + thisSection).removeClass("selected");
      $("#t" + Section).addClass("selected");
   
   });

});
