function input_clear (){
	$('input#email').focus(function(){
		if (!this.clicked) {
			$(this).attr('value', '');
			this.clicked = true;	
		}
	});
};

$(document).ready(function(){
  input_clear();
});  

