disabling hover/sliding- effect in sidebar?

disabling hover/sliding- effect in sidebar?

hello,

i need help with this code for my sidebar.php in wordpress. when i click on one sidebar-element, it opens, but closes very quick, so that i can not see the sites. the homepage is http://ntm.at/r0sa , you can see my problem when you click on "projects". what can i do, that it`s more clear?
the code for the sidebar is:

<div id="left-col">

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript">

$(document).ready(function(){
$("li.page_item").click(function(){ // trigger
$(this).children("ul").slideToggle("slow"); // blendet beim Klick auf "dt" die nächste "dd" ein.
$(this).children("a").toggleClass("closed open"); // wechselt beim Klick auf "dt" die Klasse des enthaltenen a-Tags von "closed" zu "open".
});
});

</script>



<?php custom_nav_menu(); ?>


<div id="sidebar">
<div id="feed-container">
<p><a href="<?php bloginfo('rss2_url'); ?>" id="feed_link">Subscribe to the RSS Feed</a></p>
</div>

<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('main_sidebar') ) : ?>

<div class="widget static-widget">
<h3 class="widgettitle">Archives</h3>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>

<div class="widget static-widget">
<h3 class="widgettitle">Categories</h3>
<ul>
<?php wp_list_categories('show_count=0&title_li=&hierarc hical=0'); ?>
</ul>
</div>
<?php endif; ?>
</div>
</div>



thank you very much for your help.