﻿$(document).ready(function () {
	$("a.testimonials").colorbox({
		width: "960px",
		height:"80%",
		onComplete: function () {
			//	Choose a random testimonial to display at each page load
			var testCount = 3;
			var testNum = Math.floor((Math.random() * testCount) + 1);
			$('div#test' + testNum).css('display', 'block');
		}
	});
});

