




	function slideSwitch() {
		var jQueryactive = jQuery('#slideshow DIV.active');
	
		if ( jQueryactive.length == 0 ) jQueryactive = jQuery('#slideshow DIV:last');
	
		// use this to pull the images in the order they appear in the markup
		var jQuerynext =  jQueryactive.next().length ? jQueryactive.next()
			: jQuery('#slideshow DIV:first');
	
		// uncomment the 3 lines below to pull the images in random order
		
		// var jQuerysibs  = jQueryactive.siblings();
		// var rndNum = Math.floor(Math.random() * jQuerysibs.length );
		// var jQuerynext  = jQuery( jQuerysibs[ rndNum ] );
	
	
		jQueryactive.addClass('last-active');
	
		jQuerynext.css({opacity: 0.0})
			.addClass('active')
			.animate({opacity: 1.0}, 1000, function() {
				jQueryactive.removeClass('active last-active');
			});
	}
	
	jQuery(function() {
		setInterval( "slideSwitch()", 3000 );
	});




jQuery(document).ready(function() {


	/*
	jQuery('#slider1').anythingSlider({
		// Appearance
		width               : 690,      // Override the default CSS width
		height              : 460,      // Override the default CSS width
		resizeContents      : true,      // If true, solitary images/objects in the panel will expand to fit the viewport
		
		animationTime       : 500,       // How long the slideshow transition takes (in milliseconds)
		easing				: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin

		buildArrows         : false,      // If true, builds the forwards and backwards buttons
		buildNavigation     : true,      // If true, buildsa list of anchor links to link to each panel
		navigationFormatter : null,      // Details at the top of the file on this use (advanced use)
		autoPlay            : true,      // This turns off the entire slideshow FUNCTIONALY, not just if it starts running or not
		startStopped        : false     // If autoPlay is on, this can force it to start stopped
	});

	*/
	







});



