Setting focus to the 1st field in jQuery is actually really simple: there are some plugins that also can do it automatically on each reload of a form.
I usually just use the following code on any pages where there is a form.
<script type="text/javascript">
$(document).ready(function() {
$("input:text:visible:first").focus();
});
</script>
Hope this helps.