var ds_Module_Web_Page = ds_Base.extend({
    options: {
        page_id: null
    },

    initialize: function(options) {
        this.setOptions(options);
        this.setupBlockHeights();
    },

    setupBlockHeights: function () {
        var highest = 0;
        try {
            $('contentTable').getElement('div.row_three').getElements('div.columnWidth').each(function(column) {
                //console.log('column found: ');
                if ($(column).getStyle('height').toInt() > highest) {
                        highest = $(column).getStyle('height').toInt();
                }
            });

            $('contentTable').getElement('div.row_three').getElements('div.columnWidth').each(function(column) {
                $(column).setStyle('height', highest);
            });
        } catch (err) {
            
        }
    }
});

ds_Module_Web_Page.implement(new Options);
