﻿var defaultSubscribeText = 'Enter your e-mail for updates';
$(document).ready(function() {
    $('.newsInput').click(
        function() {
            if (this.value == defaultSubscribeText) {
                this.value = '';
            }
        }
    );
    $('.newsInput').blur(
        function() {
            if (this.value == '') {
                this.value = defaultSubscribeText;
            }
        }
    );
});
