// My JS
$(document).ready(
	function()
	{
    $(".toggle").bind("click", function(){
  	    $(this).next().slideToggle();
  	  });
      $("#AF1 :input:visible:enabled:first").focus(); // sets focus on first form field
      $("#AF1 :input").bind("focus",function(){
        $(this).next(".helptext").toggle();
      });

      $("#AF1 :input").bind("blur",function(){
        $(this).next(".helptext").toggle();
      });
	}
);
