[jQuery] can toggleelements plugin be sticky ?

[jQuery] can toggleelements plugin be sticky ?


<script type="text/javascript">
$(document).ready(function(){
$('div.toggler-c').toggleElements({fxSpeed:'fast'});
$('ul.toggler-c').toggleElements();
});
</script>
<div class="toggler-c opened" title="Welcome to the...">
<p class="Ininfo">Welcome to the CUS ETC ETC ETC
</div>
I've been playing with the jquery.toggleelements plugin.
We're displaying the information to start, and we allow the user to hide
the paragraphs..
I'm a real newbie at javascript, so this may be a dumb question, but is
there any way to make the open or closed status of toggleelements "sticky"
between pages via javascript ?? If not, i'll handle it programatically at
the back end..