jQuery UI accordion - open panels with click on form button

jQuery UI accordion - open panels with click on form button


I want to use some of the features in jQuery 1.2, and could not get
the accordion here
http://bassistance.de/jquery-plugins/jquery-plugin-accordion/
working with the compatibility plugin... so I decided to change my page
over to the version of accordion shown in the UI examples.
So far so good... but I am having a hard time with the 'activate'
function.
I want to emulate the 'wizard' functionality, using a form button with
the class of "open1″ to open the second panel. My syntax (below) is
not throwing errors, but it is also not working - what should I be
doing differently?
$(document).ready(function(){
$("#stepForm").accordion();
$('open1′).click(function(){
$('#stepForm').activate(1);
});
});
Here is a sample page using this code.
http://comparemyagent.com/forms/test.cfm
The text links work fine, but the buttons do nothing.
I am sure my syntax is all wrong... but I can't find an example anywhere
of using the activate() function with a click on a named element.
Thanks in advance for any help ... unfortunately I have to have this
online very soon!