// JavaScript Document
function clearTextArea (){
	if(Field.getValue('msg') == "Votre message ici" || Field.getValue('msg') == "Your message here" ){
	Field.clear('msg');
	}
}

function initTextArea(){
	Event.observe('msg','focus', clearTextArea, false);
}


Event.observe( window ,'load', initTextArea, false);