// jQuery
$(document).ready(function() {
	/* All form fields with class clearme should auto-empty on click. */
	$(".clearme").focus(function(event){
		this.value="";
	});
});