I'm using the overlay effect and the tabs on my locally developed wordpress website. I'm using WAMP. The apache httpd.conf file has these settings

<Directory />
Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
</Directory>

on my header.php file this is the javascript within script tags that im using activate the tools

<script type="text/javascript">

$(document).ready(function() {
$('a[rel]').overlay({
effect: 'apple',
expose: '#92A0AD',
});
})

$(function() {

$("ul.tabs").tabs("div.panes > div");
});
</script>

And rewrite_module is activated (permalinks wont work if rewrite_module is turned of).

But when i turn permalinks on, the url's work but the overlays and the tabs don't.

Any help is greatly appreciated..thanks a million