$(document).ready( function(){
	
	//MASTHEAD IMAGE FADE
	$('#masthead ul.heroes').innerfade({
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: '150px'
	});
	
	//TESTIMONIAL TOGGLE
	$(".panel-231 a").toggle(
		function() {
			
			$(this).parent("p").next("blockquote").slideDown(500);
			$(this).html("Hide Testimonial &larr;");
			return false;
			
		}, function() {
			
			$(this).parent("p").next("blockquote").slideUp(500);
			$(this).html("View Testimonial &rarr;");
			return false;
			
		}
	);

});