$(document).ready( function()
{
  
    $("dl.computer-skills > dd").hide();
    $("div.skills-meaning").hide(); 
    $("dl.computer-skills > dt").css({'cursor' : 'pointer'});
    
    $("dl.computer-skills  dt").click(function () { 
      $("div.skills-meaning").show("slow"); 
      $(this).next().slideToggle("fast");
      $("td.computer-skills").attr("title","");       
    });
    
    
    $("dl.computer-skills dt").hover(
      function () {
            $(this).css({'text-decoration' : 'underline'});  
      }, 
      function () {
            $(this).css({'text-decoration' : 'none'});    
      }
    );
    

    $("td.computer-skills").hover(
      function () {
        // nothing
      }, 
      function () {
        $("dl.computer-skills > dd").slideUp(500);
        $("div.skills-meaning").slideUp("slow");
        $(this).attr("title","Contact me for more information.");
      }
    );
    
  
});

