Cufon.replace('h2', { fontFamily: 'Museo Sans 500' });
Cufon.replace('.mainIntro h3', { fontFamily: 'Museo Sans 500',
textShadow: '1px 1px #008401' });

Cufon.replace('h2.title', { fontFamily: 'Museo Sans 500' });
Cufon.replace('h3', { fontFamily: 'Museo Sans 500' });
Cufon.replace('h4', { fontFamily: 'Museo Sans 500' });
Cufon.replace('.mainIntro h2', { fontFamily: 'Museo Sans 500',
textShadow: '0px 0.5px #FFFFFF' });
Cufon.replace('h1', { fontFamily: 'Museo Sans 500' });
Cufon.replace('ul#nav a', { fontFamily: 'Museo Sans 500', 
hover: true,
textShadow: '0px 0.5px #87E10E' });
Cufon.replace('#quoterotator', { fontFamily: 'Museo Sans 500' });
Cufon.replace('blockquote', { fontFamily: 'Christopherhand' });
Cufon.replace('h3.handwritten', { fontFamily: 'Christopherhand' });
Cufon.replace('h2.handwritten', { fontFamily: 'Christopherhand' });
Cufon.replace('#news', { fontFamily: 'Christopherhand' });


/*** 
    Simple jQuery Slideshow Script
    Released by Jon Raasch (jonraasch.com) under FreeBSD license: free to use or modify, not responsible for anything, etc.  Please link out to me if you like it :)
***/

function slideSwitch() {
    var $active = jQuery('#slideshow IMG.active');

    if ( $active.length == 0 ) $active = jQuery('#slideshow IMG:last');

    // use this to pull the images in the order they appear in the markup
    var $next =  $active.next().length ? $active.next()
        : jQuery('#slideshow IMG:first');

    // uncomment the 3 lines below to pull the images in random order
    
    // var $sibs  = $active.siblings();
    // var rndNum = Math.floor(Math.random() * $sibs.length );
    // var $next  = $( $sibs[ rndNum ] );


    $active.addClass('last-active');

    $next.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 1000, function() {
            $active.removeClass('active last-active');
        });
}

jQuery(function() {
    setInterval( "slideSwitch()", 5000 );
});
