Jquery conflict

At least one issue I can see is that you’re including the jQuery framework at least twice. The first line

<?php wp_enqueue_script("jquery"); ?>

Is the preferred method of including jQuery. Your installation of WordPress happens to include jQuery version 1.4.2. This allows good plugin and theme developers to leverage jQuery and not accidentally include it manually several times.

But you also have (on line 6)

<script type="text/javascript" src="https://wordpress.stackexchange.com/questions/24719/<?php bloginfo("template_directory'); ?>/js/jquery.js"></script>

Which includes jQuery 1.2.6. Maybe one of your plugins is trying to inject this? Or perhaps this is generated in your theme (in which case you can delete it, assuming your plugins are compatible with the built in version of jQuery which is version 1.4.2.

After you resolve that issue, any further javascript errors can be isolated to a specific script or plugin.

EDIT: Addition info…

Now that you’ve removed the extra jquery include, a different error has surfaced. Using Firebug or Chrome’s debugger or your other favorite JavaScript debugger, you can see that the new error is:

$ is not a function (jquery.actions.js, line 18)

This means that you are attempting to use the jQuery shorthand selector but have wrapped your document ready using the full “jQuery” object name syntax.

In jquery.actions.js, replace each “$” reference with “jQuery”.

This will get your slider working. But you’ll also notice that you have other errors in your JavaScript…

pos is null (undo.js, line 367)

threads[x] is undefined (_display, line 915)

You may or may not care about those errors depending on how they affect your site. I tend to like to eliminate any and all errors for performance and stability. Some browsers will crash worse than others.