$j(document).ready(function() {
$j(".ProfilUser").hover(
    function () {
        $j(this).addClass("hoverJS");
      }, 
      function () {
        $j(this).removeClass("hoverJS");
      }
);
$j(".ProfilIcons a").hover(
      function () {
        $j("."+$j(this).attr("rel")).addClass("Info");
      }, 
      function () {
        $j('.ProfilText .statustext').removeClass("Info");
      }
    );
 });
