function lineUpBottoms()
{
    var maxValue = null;
    // Loop through arguments passed to function
    for (i = 0; i < arguments.length; i++)
    {
        var offsetBottom = arguments[i].offset().top+arguments[i].outerHeight();
        // Set max value if bigger than current max value (finds lowest point)
        if (offsetBottom > maxValue) maxValue = offsetBottom;
    }
    for (i=0; i < arguments.length; i++)
    {
        // Set height of passed argument so bottoms line up
        arguments[i].height(maxValue - arguments[i].offset().top - (arguments[i].outerHeight() - arguments[i].height()));
    }
}

