﻿$(function() {
$('#SubscribeTable tr td input.HomePageSubscribe').mousedown(function() {
    $(this).css('color', '#000000');
    });
});

$(function() {
    $('#SubscribeTable tr td input.HomePageSubscribe').blur(function() {
        $(this).css('color', '#aaaaaa');
    });
});
