Guest User

Untitled

a guest
May 15th, 2012
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <style type="text/css">
  2.   ul.Submenu li {
  3.     position: relative;
  4.     top: 0px;
  5.   }
  6. </style>
  7. <script type="text/javascript">
  8.   $(document).ready(function(){
  9.   $("#cssmenu li > ul").addClass('Submenu');
  10.   $("ul.Submenu > li > ul").each(function(){
  11.     $(this).css('left', $(this).parent().width() + 'px');
  12.   });
  13.  
  14.   $("#cssmenu li").mouseover (function () {
  15.     $("#cssmenu li > ul").hide();
  16.     $(this).children("ul").show();
  17.   });
  18.   /*
  19.   $("#cssmenu li ul").mouseout (function () {  
  20.     $("#cssmenu li > ul").hide();
  21.   });
  22.   */   
  23. });
  24. </script>
  25. {menu_dropdown|menu/menu_drop_down|0|0}
Advertisement
Add Comment
Please, Sign In to add comment