$(document).ready(function(){
	
	if( $.isFunction(jQuery.fn.cycleStandard) ) {
	
		$('#midTestimonials ul').cycleStandard({ 
			timeout: 6000,
			speed: 200,
			pause: 1
		});
		
	}
	
	// Summarise Testimonials
	$('.testimonialBox .text .more').click(function() {
			$(this).parents().next('.extra').show('slow');
			$(this).hide();
	});
	
	// Free Quote Button
	$('#freeQuoteLink').click(function() {
		
		$('#sideCol').animate(
			{
				backgroundColor: "#ffffae" },
				500,
				function() {
					$('#sideCol').animate({ backgroundColor: "#ffffff" }, 2000 )
				}
		);

	});

	
});

