﻿jQuery(setupThumbFades);
jQuery(setupHoverTips);

function setupThumbFades() {
   $(".hoverthumb > *").mouseover(function() {
      $(this).parent('.hoverthumb').find("img").show().parent().parent().css('z-index',"9999999");
   });

   $('.hoverthumb > *').mouseout(function(event) {
   $(this).parent('.hoverthumb').find("img").hide().parent().parent().css('z-index', 1);
   });
};

function setupHoverTips() {
   $('.hovertip > *').mouseover(function() {
        $(this).parent('.hovertip').find('.menu-tip').show().parent().css('z-index', "9999999");
   });

   $('.hovertip > *').mouseout(function() {
        $(this).parent('.hovertip').find('.menu-tip').hide().parent().css('z-index', 1);
   });
};