$(document).ready(function(){

	// Clear the default value and change the colour of the mailing list field
	$('.clear-default').each(function() {
	    var default_value = this.value;
	    $(this).css('color', '#98999b');
	    $(this).focus(function() {
	        if(this.value == default_value) {
	            this.value = '';
	            $(this).css('color', '#fff');
	        }
	    });
	    $(this).blur(function() {
	        if(this.value == '') {
	            $(this).css('color', '#98999b');
	            this.value = default_value;
	        }
	    });
	});

});