﻿
$(function() {

	$('input.subscribeInputBox').
    focus(function() {
		if (this.value == 'your email address') {
    		this.value = '';
    	}
    }).
    blur(function() {
    	if (this.value == '') {
    		this.value = 'your email address';
    	}
    });

});

