
$(document).ready(function(){
    
    // lightbox start
    $(function() {
        //$('a.lightbox').lightBox();
    });
    // lightbox end
    
    var colMaxHeight = 0;
    $('.col3, .col2a').each(function(){
        var colHeight = $(this).height();
        if (colMaxHeight < colHeight) {
            colMaxHeight = colHeight;
        }
    });
    $('.col3.grey').css('height', (colMaxHeight - 40) + 'px');
	
});

