

$(document).ready( function() {
        isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
        if (!isIE6) {
            var h1 = $('.highlights.elastic .box.left').height();
            var h2 = $('.highlights.elastic .box.right').height();
            if (h1 > h2) {
                    $('.highlights.elastic .box.right').height(h1);
            } else {
                    $('.highlights.elastic .box.left').height(h2);
            }
        }
	
});
