function handleMMJquery(){
    
    /*********************************************************
       Slideshow 
    *********************************************************/
    var slideshowSpeed = 800;
    var slideshowTimeout = 4000;    
    
    $('#slideshow').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  0,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: 'dl',
        cleartype: '1',
        pager: '#slideshowpager',
        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#slideshowpager li:eq(' + idx + ') a'; 
        }
    });
    
    $('#slideshow').cycle('pause');
    
    $('#slideshow2').cycle({ 
        fx:      'fade', 
        speed:    slideshowSpeed, 
        timeout:  slideshowTimeout,
        continuous: 0, // set this to 0 so timeout will work
        slideExpr: 'dl',
        cleartype: '1',
        pager: '#slideshowpager',
        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '#slideshowpager li:eq(' + idx + ') a'; 
        }
    });
    
    /*********************************************************
       Awards Hover
    *********************************************************/    
    $("a.awards-mccollum").hover(
      function () { $("img#image-mccollum").fadeIn('slow');  }, 
      function () { $("img#image-mccollum").fadeOut('fast'); }
    );
    
    $("a.awards-dreeben").hover(
      function () { $("img#image-dreeben").fadeIn('slow');  }, 
      function () { $("img#image-dreeben").fadeOut('fast'); }
    );
    
    $("a.awards-franklin").hover(
      function () { $("img#image-franklin").fadeIn('slow');  }, 
      function () { $("img#image-franklin").fadeOut('fast'); }
    );   
    
    
};
