elbLayer.push('search view', { term: 'crazy shorts', results: 2 }, 'load');
elbLayer.push('product impression', { id: 1 }, 'visible');
elbLayer.push('product impression', { id: 2 }, 'visible');
// by clicking on a product (since click is not related, both fire)
elbLayer.push('product click', { id: 2 }, 'click');
elbLayer.push('search click', { id: 2, term: 'crazy shorts', results: 2 }, 'click');