$(function() {
  
  $('.floating_box').wrapInner("<div class='wrapper_1'><div class='wrapper_2'></div></div>");
  $('.floating_box:first').addClass('first_box');
  
  $('.overview .section_summary').hover(function() {
    $(this).addClass('hover');
  }, function() {
    $(this).removeClass('hover');    
  }).click(function(e) {
    e.preventDefault();
    window.location = $(this).find('h3 a').attr('href');
  });

});