function handleJquery(){
   /*********************************************************
       Menu
    *********************************************************/    
    $("ul.sf-menu").supersubs({ 
            minWidth:    8,   // minimum width of sub-menus in em units 
            maxWidth:    27,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish({ 
            hoverClass:  'sfHover',          
            delay:       500,                            // one second delay on mouseout 
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed 
            autoArrows:  false,                           // disable generation of arrow mark-up 
            dropShadows: false                            // disable drop shadows 
        }); 
        
        
    /*********************************************************
       Slideshow 
    *********************************************************/
    var slideshowSpeed = 800;
    var slideshowTimeout = 4000;    
    
    $('#slideshow').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  slideshowTimeout,
        continuous: 0, // set this to 0 so timeout will work
        cleartype: '1'
    });
    
    // Tabs
    $('#tabs').tabs();
    
    //hover states on the static widgets
    $('#dialog_link, ul#icons li').hover(
        function() { $(this).addClass('ui-state-hover'); }, 
        function() { $(this).removeClass('ui-state-hover'); }
    );

};
