$(document).ready(function() {
	
	/* ------------------------------------------------------------ */
	// for making the boxes clickable: the copy is editable in the cms, so cannot have a fixed height. set the heights up equally here so that the entire box is a link (including empty space below the copy)

	var tallestBoxHeight = $('#HomeBoxExtel .HomeBoxCopy').height();

	if ($('#HomeBoxCopyLipper').height() > tallestBoxHeight)
		tallestBoxHeight = $('#HomeBoxCopyLipper').height();
	if ($('#HomeBoxCopyStarMine').height() > tallestBoxHeight)
		tallestBoxHeight = $('#HomeBoxCopyStarMine').height();
		
	$('#HomeBoxCopyExtel').css('height', tallestBoxHeight + 'px');
	$('#HomeBoxCopyLipper').css('height', tallestBoxHeight + 'px');
	$('#HomeBoxCopyStarMine').css('height', tallestBoxHeight + 'px');

});
