﻿var Redirect = {

    Count: 5,
    Interval: 1000,

    Init: function () {
        $("span.timer").html(Redirect.Count);
        window.setTimeout(Redirect.Update, Redirect.Interval);
    },

    Update: function () {
        Redirect.Count--;
        if (Redirect.Count > 0) {
            $("span.timer").html(Redirect.Count);
            window.setTimeout(Redirect.Update, Redirect.Interval);
        } else {
            location = "http://www.heatherandoly.com/";
        }
    }
};
