
	/*** 
	    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 = $('#slideshowIMG div.active');
	    if ( $active.length == 0 ) $active = $('#slideshowIMG div:last');
	    // use this to pull the IMGs in the order they appear in the markup
	    var $next =  $active.next().length ? $active.next()
	        : $('#slideshowIMG div:first');
	    $active.addClass('last-active');
	    $next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	            $active.removeClass('active last-active');
	        });
	}
	$(function() { setInterval( "slideSwitch()", 5000 ); });





/*** 
	    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 slideSwitch1() {
	    var $active = $('#slideshowIMG1 DIV.active');
	    if ( $active.length == 0 ) $active = $('#slideshowIMG1 DIV:last');
	    // use this to pull the IMGs in the order they appear in the markup
	    var $next =  $active.next().length ? $active.next()
	        : $('#slideshowIMG1 DIV:first');
	    $active.addClass('last-active');
	    $next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	            $active.removeClass('active last-active');
	        });
	}
	$(function() { setInterval( "slideSwitch1()", 5000 ); });






/*** 
	    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 slideSwitch2() {
	    var $active = $('#slideshowIMG2 DIV.active');
	    if ( $active.length == 0 ) $active = $('#slideshowIMG2 DIV:last');
	    // use this to pull the IMGs in the order they appear in the markup
	    var $next =  $active.next().length ? $active.next()
	        : $('#slideshowIMG2 DIV:first');
	    $active.addClass('last-active');
	    $next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	            $active.removeClass('active last-active');
	        });
	}
	$(function() { setInterval( "slideSwitch2()", 5000 ); });






/*** 
	    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 top() {
	    var $active = $('#top DIV.active');
	    if ( $active.length == 0 ) $active = $('#top DIV:last');
	    // use this to pull the IMGs in the order they appear in the markup
	    var $next =  $active.next().length ? $active.next()
	        : $('#top DIV:first');
	    $active.addClass('last-active');
	    $next.css({opacity: 0.0})
	        .addClass('active')
	        .animate({opacity: 1.0}, 1000, function() {
	            $active.removeClass('active last-active');
	        });
	}
	$(function() { setInterval( "top()", 5000 ); });





