$().ready(function()
{
    $("input[name=discountCode]").click(function(){
        this.value="";
    });
    $("a.subscribe").click(function (){
        if ($("input#large").val() == "Enter Promo Code")
        {
            $("input#large").val("");
        }

        document.subscribeTodayLargeForm.submit();
        return false;
    });

    $("input.subscribe").click(function (){
        if ($("input#small").val() == 'Enter Promo Code')
        {
            $("input#small").val("");
        }

        document.subscribeTodaySmallForm.submit();
        return false;
    });

    if ($("input[name=discountCode]").val() == "")
    {
        $("input[name=discountCode]").val("Enter Promo Code");
    }

    if ($("input[id=product0]").length > 0 &&
        !$("input[id=product0]").attr("checked"))
    {
        $("input[id=product0]").attr("checked", true);
    }

    $("div.subscribeToday ul li:nth-child(even)").addClass("light");
});