/*function fadeout_boxes(goWhere) {
    $(".box:eq(2)").fadeOut(100,
        function () {
            $(".box:eq(1)").fadeOut(100,
            function() {
            $(".box:eq(0)").fadeOut(100,
                function() {
                document.location = goWhere;
                })
            })
        });
}

$(document).ready(function() {
    $(".box").fadeIn(500);
    $("#menu a").click(function(e) {
        e.preventDefault();
        fadeout_boxes($(this).attr("href"));
    });
});*/

$(window).load(function(){
    var max_height = 400;
    $(".box").each(function(){
        if ($(this).height() > max_height) max_height = $(this).height();
    });
    if (max_height != 400) {
        $(".box").animate({height: max_height+"px"}, 1000);
        changed = true;
    }
});