$(document).ready(function(){
  $("tr.clientareatableactive").hover(
    function(){
      $(this).css("background-color", "#C2EFC3");
    },
    function(){
      $(this).css("background-color", "#DFFFE0");
    }
  );
  $("tr.clientareatableactive").click(function(){
    window.location = $(this).attr("url");
  });
});
