// ===============================================
// JS->UTILITY ===================================
// ===============================================

// -----------------------------------------------
// UTILITY->JS -----------------------------------
// -----------------------------------------------
function random_integer(max)
{
    return Math.ceil(Math.random() * max);
}

var swap_current = "reel";
function swap_home()
{
    if (swap_current == "reel")
    {
        $("#about_reel").attr("src", "http://player.vimeo.com/video/25563345");
        $("#swap").html("Watch the North Avenue Post Reel");

        swap_current = "tour";
    }
    else
    {
        $("#about_reel").attr("src", "http://player.vimeo.com/video/23534413");
        $("#swap").html("Watch the North Avenue Post Tour");

        swap_current = "reel";
    }
}

