﻿/// <reference path="jquery-1.4.2.vsdoc.js" />
/// <reference path="jquery.templ.js" />
/// <reference path="cufon.js" />

$(function ()
{
    var launchDate = new Date(2010, 8, 26, 9, 30); // Sept 26, 2010 9:30 AM
    var today = new Date();
    var difference = (Math.round((launchDate - today) / (24 * 60 * 60 * 1000))).toString();
    var days = {
        first: difference.substring(0, 1),
        last: difference.substring(1)
    };

    $(".days").children().remove();
    $("#counter-template").render(days, null).appendTo(".days");

    Cufon.replace('h1')('h2')('#left')('#right');
});
