// JavaScript Document

$(document).ready(function(){
						   
	$('input[type=text], textarea').focus(function() {
			$(this).val('');
	});
	
});
