Accordion options

Accordion options


I can't get how the accordion options are working. I want the
accordion completly closed at first then the regular behavior, with
the possibity to close all the divs (like the accordion is supposed to
be when the page is launched first).
Can someone tell me where I get it wrong in this code?
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Wrong Accordion</title>
<script src="../jquery-1.2.3.min.js" type="text/javascript"></script>
<script type="text/javascript" src="../jquery.dimensions.js"></script>
<script type="text/javascript" src="../ui.accordion.js"></script>
<script type="text/javascript">
$(document).ready(function() {
    $('#example1').accordion()({
    header: 'a.firstClick',
    active: false,
alwaysOpen: false,
autoHeight: false
});
});
</script>
</head>
<body>
<h2>Quite a simple test</h2>
    <div id="example1">
        <a href="#" class="firstClick">Test 1</a>
            <div>Lorem ipsum dolor sit amet.</div>
        <a href='#' class="firstClick">Test 2</a>
            <div>Consectetur adipisicing elit.</div>
        <a href='#' class="firstClick">Test 3</a>
            <div>Sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua.</div>
    </div>
</body>
</html>
Thanks a lot