		function testimonialsCycle(){
			jQuery('#quotes blockquote').css('opacity','0');
			jQuery('#quotes').cycle({
				timeout: 8000
			});
		}
		
		//on meet the team page create a link list of all the staff names in alphabetic order
		function teamList() {
			//add ids to h3's
			var titles = new Array();
			jQuery('h3').each(function(){
				var el = jQuery(this),
					text = el.text(),
					html = el.html();
				if(text != "" && html != "&nbsp;"){
					var id = el.text().split(' ').join('-').toLowerCase();
					el.attr('id', id);
					titles.push('<li><a href="#' + id.replace(/&/g, "&amp;") + '">' + text + '</a></li>');
				}
				
			});
			jQuery('ul#sidebar').append('<li id="pagelist" class="widget"></li>');
			jQuery('li#pagelist').html('<h2>Index</h2><ul id="h3Index"></ul>');
			jQuery.each(titles.sort(),function(key, value){
				jQuery('li#pagelist ul').append(value);
			});
			jQuery('#h3Index a').live('click', function(e){
				e.preventDefault();
				var dest = jQuery(this).attr('href');
				jQuery.scrollTo(dest, 800);
			});
		}
