$(function() {
  if ($("#partitions_main").get(0)) {
     $("#partitions_main .info_block").hover(
        function() {
           if ($(".info td",this).height()<116)
              $(".info td",this).height(116);
           $(".info", this).show();
           $(".head", this).hide()
        },
        function() {
           $(".info", this).hide();
           $(".head", this).show();
        }
     )
     $("#partitions_main .info").click(function() {document.location.href=$(this).attr('href')})
  }
})
