
%STARTINCLUDE%
<script type="text/javascript" src="/twiki/pub/Quimica/JavaScript/jquery.js"></script>
<script type="text/javascript">
$("document").ready(function(){
$("#menu li").click(function(){
$(this).addClass("show");
$(".show ul").slideToggle("normal");
$(this).removeClass("show");
});
});
</script>
%STOPINCLUDE%