

/* about page */
function initCarousel() {
	$('#slide_holder').agile_carousel({
		first_last_buttons: "no",
		hover_next_prev_buttons: "no",
		next_prev_buttons: "no",
		path_to_slides: "agile_carousel_slides",
		pause_button: "no",
		slide_buttons: "no",
		slide_captions: "Precision|Performance|Service", 
		alt_attributes: "Precision,Performance,Service",
		slide_directory: "agile_carousel_slides", // must contain the phrase "agile_carousel"		
		slide_number_display: "no",
		timer_length: "6000",
		transition_duration: 1000,
		transition_easing: "easeOutBack",	
		transition_type: "carousel",
		water_mark: "no",		
		stop_rotate_on_hover: "yes",
		continue_timer_after_click: "yes"
	});
}

function agile_slide_custom() {
	$(".slide-caption li").removeClass("hilight");
	$(".slide-caption li").each(function(index, elem){
	if ($(elem).text() == $("#slide_captions span").text())
		$(elem).addClass("hilight");
	});
}
