// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
// 
// 
$(document).ready(function(){
//code goes below 
var tallest = 0;
 $('#content_container #main>div').each(function()
{
    
        thisHeight = $(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    
}


);
 $('#content_container #main>div').height(tallest);
 //code goes above
});