 $(document).ready(function() {
   $("img").hover(function() {
   	 var imageName = $(this).attr("alt");
     $('.'+imageName).addClass("highlight");
   },function(){
     $(".highlight").removeClass("highlight");
   });
 });

/* This script sets up an hover function for every img in the document (it should be narrowed to img elements
in a particular div in implementation). On hover it applies a class of .highlight to every element that
has class that matches the alt attribute of the img. Thus, hovering over an img with alt='thomas' will
apply the highlight class to any element that has a class of 'thomas'. Remember that you can apply multiple
classes to an element if they are seperated with a space. */



