$(function() {
  $('body.hexaweb #content div.view-id-references div.views-row').css('position','relative');
  $('body.hexaweb #content div.view-id-references div.views-row').each(function() {
    $.create('div', {'class': 'preview-content'}, $(this.childNodes).not('div.preview, img')).appendTo(this);
  });
  $('body.hexaweb #content div.view-id-references div.views-row>div.preview-content').hide();
  $('body.hexaweb #content div.view-id-references div.views-row').hoverIntent(function() {
    $('div.preview-content',this).fadeIn('slow');
  }
  ,function() {
    $('div.preview-content',this).fadeOut('slow');
  });
});
