$(window).load(function() {
    var maxHeight = 0; 
    $('div.stil1, div.stil2, div.stil3').each(function(){ 
        if (maxHeight < $(this).height()) 
        	{maxHeight = $(this).height()}
    }); 
    $('div.stil1, div.stil2, div.stil3').each(function(){ 
        $(this).height(maxHeight); 
    }); 
});
