/**
 * Set equal height for teasers (Recipe Suggestion and Other Products)
 */
function mSetTeaserHeight() {
  iBorderHeight = 4;

  iRcH = $('recipe_suggestion').getHeight();
  iPrH = $('other_products').getHeight();

  if ( iRcH < iPrH) {
    $('recipe_suggestion').setStyle({
      height: (iPrH - iBorderHeight) + 'px' 
    }); 
  } else {
    $('other_products').setStyle({
      height: (iRcH - iBorderHeight) + 'px' 
    }); 
  }
}

Event.observe(window, "load", mSetTeaserHeight)
