// JavaScript Document


// FOR EMAIL SUBSCRIPTION FIELDS, ETC: CHANGE VLAUE AND COLOR OF TEXT ON FOCUS/BLUR
// REQUIRES jQuery


function setDefaultValue() {
	$('.default_value').each(function() {
		var default_value = this.value;
	//    $(this).css('color', '#666'); // this could be in the style sheet instead
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
				$(this).css('color', '#000000');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#acacac');
				this.value = default_value;
			}
		});
	});
};

