$(
 function()
 {
  $(".compTbl tr.bgMedium").hover(
   function()
   {
   
    $(this).removeClass("bgMedium");
    $(this).toggleClass("comparehighlight");
	
   },
   function()
   {
    $(this).addClass("bgMedium");
    $(this).toggleClass("comparehighlight");
   }
  )
 }
)
$(
 function()
 {
  $(".compTbl tr.bgLighter").hover(
   function()
   {
   
    $(this).removeClass("bgLighter");
    $(this).toggleClass("comparehighlight");
	
   },
   function()
   {
    $(this).addClass("bgLighter");
    $(this).toggleClass("comparehighlight");
   }
  )
 }
)



