$(document).ready(function(){
    $(".other").hover(function () {
		  if ($(".other").hasClass("otherSol")) {
			 $(".other").removeClass("otherSol");
			 $(".other").addClass("otherSolHover");
	  }
      }, 
      function () {
		  if ($(".other").hasClass("otherSolHover")) {
			 $(".other").removeClass("otherSolHover");
			 $(".other").addClass("otherSol");
	  }
      }
    );

});