function addQuestionClear () {
	if ($('QuestionQuestion').value == "Your Question...") {
		$('QuestionQuestion').value="";
	};
}

function addAnswerClear () {
	if ($('answer_1').value == "Answer...") {
		$('answer_1').value="";
	};
}

function twitterCount (updateId) {
	// Message character count
	textarea = 'UserMessage'+updateId;
	charcount = $(textarea).value.length;
	charleft = 140-charcount;
	updatearea = 'character_total'+updateId;
	$(updatearea).update(charleft);
}

function questionCount () {
	// Message character count
	charcount = $('QuestionQuestion').value.length;
	charleft = 255-charcount;
	$('question_total').update(charleft);
}

document.observe("dom:loaded", function() {
   // attach all event handlers...
	if ($('QuestionQuestion')) {
		$('QuestionQuestion').observe('click', addQuestionClear);
	};
	if ($('answer_1')) {
		$('answer_1').observe('click',addAnswerClear);
	};
});