﻿// tribe.js
// TribeAgency, LLC


function init()
{
    // functions to execute on page load

}

function test()
{
    top.location.replace(self.location.href);
    alert("Aaaaaaaaaahhhhh!");
}


function toggleCalendar(calId, buttonId)

{

    var slideDuration = 0.5;

    if($(calId) && $(buttonId))

    {

        if($(calId).style.display=="none")

        {

            var x = new Effect.SlideDown(calId, {duration:slideDuration});

            $(buttonId).innerHTML = "Hide Calendar";

        }

        else

        {

            var y = new Effect.SlideUp(calId, {duration:slideDuration});

            $(buttonId).innerHTML = "Show Calendar";

        }

    }

}

