If you seen my webmasters panel then you will understand that the sidemenu with all the effects and dropdown ect is done by this small object of my framework!

I posting this to show you some more code in regards to jQuery

PHP Code: 
Sidebar : {
        
Init : function(){
            
this.Sidemenu();
        },
        
/*Functions*/
        
Sidemenu : function(){ //Navigation
            
$("#main-nav li ul").hide(); // Hide all sub menus 
            
$("#main-nav li a.current").parent().find("ul").slideToggle("slow");
            $(
"#main-nav li a.nav-top-item").click// When a top menu item is clicked...
                
function () {
                    $(
this).parent().siblings().find("ul").slideUp("normal"); // Slide up all sub menus except the one clicked
                    
$(this).next().slideToggle("normal"); // Slide down the clicked sub menu
                    
return false;
                }
            );
            
/**/
            
$("#main-nav li a.no-submenu").click// When a menu item with no sub menu is clicked...
                
function () {
                    
window.location.href=(this.href); // Just open the link instead of a sub menu
                    
return false;
                }
            );
            
/**/
            
$("#main-nav li .nav-top-item").hover(
                function(){
                    $(
this).stop().animate({ paddingRight"25px" },200);
                }, 
                function () {
                    $(
this).stop().animate({ paddingRight"15px" });
                }
            );
        }
    },