// JavaScript Document
	$(document).ready(function(){
    		$('.feature').each(function() {
				$(this).cycle({ 
    				fx:     'fade', 
   			 		speed:  'fast', 
    				timeout: 0
				});
			});
			
			$('.controls').each(function() {
				$(this).children().filter('a').each(function(i) {
					$(this).click(function() {
						var id = $(this).parent().attr('id');
						 var testimonialNum = id.substring(9);
					// cycle to the corresponding slide 
						$('#testimonial-feature-'+testimonialNum).cycle(i); 
						return false; 
					}); 
				});
			});
							
			$('a.concealer').each(function() {
				$(this).toggle(function() {
					$(this).siblings().filter('p').children().filter('span').slideDown();
				},
				function() {
					$(this).siblings().filter('p').children().filter('span').slideUp();
				});
			});
			
		});
		
