﻿  jQuery(function($) {
    $('.points li').hide();
    $('.times li').mouseenter(function() {
      var time = $(this);
      time
        .addClass('hover')
        .siblings().removeClass('hover');
      
      var index = time.parent().children().index(this);
      
      $($('.points li').hide().get(index)).show();
    });
  });