$(document).ready(function() {
	var inputName = $('#name');
	if (inputName.length != 0){
		inputName.attr('name', 'humanName');
	}
});
