(function($){

  /*
  ** Uhh....so this is a function which attaches a load event to all images for ie8
  ** This load event finds all the parents of the image which are divs and decendants of a .container
  ** This effectively causes the page to repaint properly and fixes the overflow issue for images within inline blocks
  ** Originally I was re-assigning the display of each element but it seems simply finding the elements is enough to "touch" them, so to speak
  ** This does not work without the selector being passed to the parents function, probably because it's manipulating the element as a result of the selector
  ** This is....not ideal, but it works.
  */
  $(document).ready(function(){
    $('.ie8 img').load(function(){
      $(this).parents('.container div');
    });
  });
  
})(jQuery);;

