﻿/*::::::::::::::::::::::::::::::::::::::::::::
		Home JS
		Copyright © 2010 McMurry
		Design by Matthew Jorgensen
		XHTML/CSS/JS by Matthew Jorgensen
::::::::::::::::::::::::::::::::::::::::::::*/

$(function () {
	// Sponsors
	if ($('#testimonials .article-wrap .article-innerwrap .testimonialitem ').length > 0) {
		if ($('#testimonials .article-wrap .article-innerwrap .testimonialitem').length > 1) { // If there is more than 1 Testimonial, add the controls
			$('#testimonial-controls').prepend('<a href="javascript:void(0);" class="nextbtn">next</a>')
			$('#testimonial-controls').prepend('<a href="javascript:void(0);" class="prevbtn">prev</a>')
		}
		if ($('#testimonials .article-wrap .article-innerwrap .testimonialitem').length > 1) { // If there are more than 1 Testimonial, add the scrollable
			$('#testimonials .article-wrap').scrollable({ clickable: false, items: '.article-innerwrap', next: '.nextbtn', prev: '.prevbtn', size: 1, speed: 500, }).autoscroll({ interval: 5500, autopause: true, steps: 1 }).circular().mousewheel();
		}
	} else {
		$('#testimonials').remove(); // If no sponsors, remove.
	}
});

