// JavaScript Document for Olay UK product landing page.

$(document).ready(function(){
	
	// Dynamically setting height of the callout boxes to the one that is highest - contains the most copy -  so that the links line up horizontally.
	var h = 0;
	
	$('.containerProduct').each(function(){
																			 
			if ($(this).height() > h) {
				
				h = $(this).height();
				
			}
				
	});
	
	$('.containerProduct').height(h);
	
	h = 0;
	
	$('.containerMoreProduct').each(function(){
																			 
			if ($(this).height() > h) {
				
				h = $(this).height();
				
			}
				
	});
	
	$('.containerMoreProduct').height(h);
	
});