function handlejquery(){			
        
    /*********************************************************
       Slideshow 
    *********************************************************/
    var slideshowSpeed = 800;
    var slideshowTimeout = 6000;   

    // Carousel
    $('ul#user_interaction').carouFredSel({
        auto: false,
        prev: "#flickr-prev",
        next: "#flickr-next"
    });
         
    
    $('.gallery').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  0,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: 'li.gallery-item',
        cleartype: '1',
        next: '.slideshow-next',
        prev: '.slideshow-prev',
        pager: '#pane-target',
        pagerEvent: 'onclick',

        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#pane-target li:eq(' + idx + ') a'; 
        }
    });
    
   /*********************************************************
       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 
    }); 


    $('#highlight').cycle({ 
        fx:      'fade', 
        speed:    1000,
        timeout:  slideshowTimeout,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: '.highlight-post',
        next: '.highlight-next',
        activePagerClass: 'activeSlide', 
        cleartype: '1',
        pager: '#highlight-nav',
        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#highlight-nav li:eq(' + idx + ') a'; 
        }
    });

}

