
jQuery(document).ready(function(){

  (function($){
    $(".product-thumbnails a").each(function(){
      $(this).click(function(e){
        e.preventDefault();
      });

      $(this).hover(function(){
        $(".product-image img").attr("src", ltaProductImages[$(this).children().attr('id')]);
      });
    });
  })(jQuery);

  jQuery("a.link-other-illus").fancybox({
    'transitionIn'  : 'elastic',
    'transitionOut' : 'elastic',
    'speedIn'       : 600,
    'speedOut'      : 200,
    'overlayShow'   : true,
    'cyclic'        : true,
    'titleShow'     : false
  });
});

