$(document).ready(function() {
    sl1_height = $("#home_spotlight1_content").height();
    sl2_height = $("#home_spotlight2_content").height();
    sl3_height = $("#home_spotlight3_content").height();

   
    max_height = Math.max(sl1_height, sl2_height, sl3_height) + 20; //the 20px is to make 20px padding-bottom.
    ;
    $("#home_spotlight1_content").height(max_height);
    $("#home_spotlight2_content").height(max_height);
    $("#home_spotlight3_content").height(max_height); 
    
    /*
    c_suite_right = $("#c_suite_right1").innerHeight();
    c_suite_left = $("#c_suite_left1").innerHeight();
    max_c_suite_height = Math.max(c_suite_right, c_suite_left);
    $("#c_suite_right1").height(max_c_suite_height);
    $("#c_suite_left1").height(max_c_suite_height);
    */

})
