/* Author: Ben Walker

*/

$(function() {
	
	if (typeof(window.Shadowbox) !== 'undefined') {
		Shadowbox.init({
			skipSetup: true
		});
	}
	$("a[rel='shadowbox']").click(function() {
		Shadowbox.open({
			content:    $(this.hash).html(),
			player:     "html",
			height:     480,
			width:      680
		});
	});
	
	$("#testimonials ul").cycle({
		timeout: 8000
	});
	
});






















