// JavaScript Document

// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
function matchColumns()
{
    var columns = $A($$('div.notes'));
    var column_height = 0;
    var max_height = 0;
    columns.each(function(column)
    {
        column_height = column.getHeight();
        max_height = ( column_height > max_height ) ? column_height : max_height;
    });
 
    columns.each(function(column)
    {
        column.setStyle({
            height: (max_height + 10) + 'px'
        });
    });
}