﻿function addBookmark(title, url) {
    if (window.sidebar)                             // Mozilla Firefox Bookmark
    {
        window.sidebar.addPanel(title, url, "");
    }
    else if (window.external)                             // IE Favorite
    {
        window.external.AddFavorite(url, title);
    }
    else if (window.opera && window.print)          // Opera Hotlist
    {
        return true;
    }
}

Cufon.replace('h1');
Cufon.replace('h2');
Cufon.replace('h3');
Cufon.replace('.row');
Cufon.replace('.cuffed', { hover: true });
Cufon.replace('.title');


$(function () {
    $('.images').cycle({
        fx: 'fade',
        timeout: 6000,
        random: 1
    });
});

$(function () {
    var launchDate = new Date();
    launchDate = new Date(2011, 8 - 1, 29, 11, 0, 0);
    $('#Countdown').countdown({
        until: launchDate, 
        labels: ['', '', '', '', '', '', ''], 
        // The expanded texts for the counters 
        labels1: ['', '', '', '', '', '', '']
            // The display texts for the counters if only one 
    });
});
