$(document).ready(function() {
  /*
  $('div.hoverbox').hover(function() {
    var height = $(this).children('img').outerHeight() ;
    var textheight = $(this).children('div.hovertext').outerHeight() ;
    $(this).children('div.hovertext').stop().animate({'top':(height-textheight)+'px'}) ;
  },function() {
    var height = $(this).children('img').outerHeight() ;
    $(this).children('div.hovertext').stop().animate({'top':height+5}) ;
  }) ;*/
}) ;
