/*$(document).ready(function() {
// put all your jQuery goodness in here.
$("ul.professors li").hover(
      function () {
      	$(this).find("img.bn").hide();
        $(this).find("img.color").show();        
      }, 
      function () {
        $(this).find("img.color").hide();
        $(this).find("img.bn").show();
      }
    );

});
*/