source: trunk/spip/2.1/extensions/magusine-portage2.1/themes/punta/javascript.js @ 756

Last change on this file since 756 was 756, checked in by guillermoacedo@…, 14 years ago

se agrego la correccion de magusine para 2.1 basica

File size: 284 bytes
Line 
1 $(document).ready(function(){
2        $(".ulniveau2").hide();
3        $(".niveau1").mouseover(function(){
4                $(this).addClass("niv1over");
5                $(this).children(".ulniveau2").show();
6                }).mouseout(function(){
7                $(this).removeClass("niv1over");
8                $(this).children(".ulniveau2").hide(); 
9        });
10       
11 });
12 
13 
Note: See TracBrowser for help on using the repository browser.