﻿$(document).ready(function() {
    $("a.imagelink img, a.textlink").mouseenter(
              function() {
                  if ($(this).attr("class") == "")
                      $(this).parent().siblings(".textlink").css({ 'text-decoration': 'underline' });
                  else
                      $(this).css({ 'text-decoration': 'underline' });
              }).mouseout(
                  function() {
                      if ($(this).attr("class") == "")
                          $(this).parent().siblings(".textlink").css({ 'text-decoration': 'none' });
                      else
                          $(this).css({ 'text-decoration': 'none' });
                  })
         }
        );
