/**
 * @depend jquery-1.3.2.js
 * @depend routes.js
 */
try {
    var pageTracker = _gat._getTracker("UA-61093-4");
    pageTracker._trackPageview();
} catch(err) {}

$(document).ready(function() {
    var colHeight = 0;
    var columns = $('.columns .col'); 
    columns.each(function(){
        var height = $(this).height();
        if( height > colHeight ) {
            colHeight = height;
        }
    });
    columns.css({
        height: colHeight + 'px'
    });
    $('#numrow input').attr('value',378);
    $('#numrow').hide();
});
