// SpryMenuBar.js - version 1.00 - Spry Pre-Release 1.6.1
//
// Copyright (c) 2011. Ken Empie, Web 8080
// All rights reserved.
$(document).ready(function(){
	$('#testimonials .slide');
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(1000,function(){
			if($(this).next('li.slide').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	},6000);	
});	


