$(document).ready(function() {
  /******************************************** Lerning ****************************************/
  $('a.TopCat').tinyTips('yellow', 'title');
  
  /******************************************** clips ****************************************/
  
  $('.CatRow').mouseenter(function(){
    var Cat = this;
    
     $(this).find('.TopCat').each(function(i) {
        $(this).bind('mouseenter', {index:i}, function(e){
          
         
          
          if ( $(Cat).find('.TabPanel').eq( e.data.index ).is(':visible') != true ) {
                      $(Cat).find(".TabPanel:visible").slideUp('speed');
          $(Cat).find('.TabPanel').eq( e.data.index ).slideDown();

          }
        });
    });   
  });


   $('.CatRow').mouseleave(function(){
    $(this).find(".TabPanel:visible").slideUp('speed');
  });
  
  });   
