// Script to expand Testimonials

// Call script on page load
$(document).ready(function() {
	
	// Give div overflow hidden property
	$(".expand").css("overflow", "hidden");
	
	// Set height to 35px
	$(".expand").css("height","35px");
	
	//On click expand the text to full size
	$("a.toggle_content").toggle(function(){
			// Expand height to size of text
			$(this).prev(".expand").css("height","auto");
			
			// Change read more button to close
			$(this).html("Contract &raquo;");
			}, function () {
				
			// Reduce Size
			$(this).prev(".expand").animate({ height: "35px"}, 100);
			$(this).html("Read more &raquo;");
			
			// Disable default anchor function
			return false;
		});
	
});
