﻿$(function() {
  $("table.links a:not(.cur)").hover(
    function() { $(this).addClass("active"); },
    function() { $(this).removeClass("active"); }
  );

  $("a.zoom").fancybox({
    'zoomSpeedIn': 500,
    'zoomSpeedOut': 500
  });
});