﻿$(document).ready(function () {
    $(".homepagenewslettersignup").click(function () {
        $(this).val('');
        $(this).css('color', 'black');
    });
    $(".homepagenewslettersignup").blur(function () {
        if ($(this).val() == '') {
            $(this).css('color', 'grey');
            $(this).val('Enter email address');

        }
    });
});
