﻿$(function ()
{
/*
    // make the height of all office listings the same
    var tallest = 0;
    $(".offices li").each(function ()
    {
        if ($(this).height() > tallest)
        {
            tallest = $(this).height();
        }
    });
    $(".offices li").css("height", tallest + "px");

    // float every second office listing to the right
    $(".offices li:odd").css("float", "right");
*/
});
