/* JavaScript to be included last in document head */
$(function(){
	// The pmAutoFocus class is used to auto-focus an element.
	// Setting the AutoFocus property of a FormInput causes the pmAutoFocus
	// class to be added to the input.
	// This must be done last because once focus is set on a field the jQueryUI
	// autocomplete()'s setting of attribute autocomplete="off" fails to take
	// effect in Firefox 3.6.3.  Perhaps impossible to set any further
	// attributes on an input after it has received focus. 
	//$(".pmAutoFocus").focus().select();
});
