﻿/// <reference name="MicrosoftAjax.js" />
/// <reference path="~/scripts/jquery-1.3.2-vsdoc2.js" />
var emptyGuid = '00000000-0000-0000-0000-000000000000';
$(function() {

    $(".nav li a").hover(function()
    {
        jQuery(this).animate({ color: "#CFB349" }, 750);
    }, function()
    {
        jQuery(this).animate({ color: "#999" }, 750);
    })

    $("a.subscribeLink").fancybox({
        'titleShow': false,
        'transitionIn': 'fade',
        'transitionOut': 'fade'
    });
});
function ShowCountdown(displayElement, seconds)
{
    $get(displayElement).innerHTML = seconds;
    if (seconds > 0)
    {
        seconds -= 1;
        setTimeout('ShowCountdown("' + displayElement + '", ' + seconds + ')', 1000);
    }
}
function DisplaySuccessMessage() {
    $("<div class='saveSuccessful'>Save Successful</div>").appendTo(".content h2").hide().fadeIn(2000).animate({opacity: 1.0}, 1000).fadeOut(2000);
}