 $(document).ready(function(){
    $("div.enterleave").bind("mouseenter",function(){
			document.getElementById('short_descr'+this.id).style.visibility='visible';
			//$('#short_descr4725').show();
    }).bind("mouseleave",function(){
      document.getElementById('short_descr'+this.id).style.visibility='hidden';
    });

  });

