$(document).ready(function(){

	if ($.isFunction(jQuery.fn.cycleStandard)) {
		$('#midImage #midClientCycle').cycle({ 
		    timeout: 3800,
		    speed: 1000,
		    pause: 1
		});
		
		$('#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').css('background-color','#ffffae');
		$('#sideCol').animate(
			{
				backgroundColor: "#ffffae" },
				500,
				function() {
					$('#sideCol').animate({ backgroundColor: "#ffffff" }, 2000 )
				}
		);
		/*$('#sideCol').seekAttention({
			fade: false,
			pulse: false
		});*/

	});

	
});
