When using a form on you page, the visitor's cursor is not automatically placed in the first available input field of your form. You can put the cursor there by using the following in a custom header:

<body onload="document.form-name.input-name.focus();">

where form-name is the name of your form, and input-name is the name of the text input object.