$(function() {
	$('#question').focus(function(){
		if (this.value == 'Your question...') { this.value = ''; }
	});
	$('#question').blur(function(){
		if (this.value == '') { this.value = 'Your question...'; }
	});
});
