$(document).ready(function(){
	var ua = navigator.userAgent.toLowerCase();
	var iphone = ((ua.indexOf("iphone")!=-1)&&($.browser.safari))
	if (iphone)
	{
		$("#videoWarning").text('Flash video will not work on iPhone/iPod Touch. Sorry! You can still read the transcripts, though.');
	}
	else
	{
	}
	$("div.video.testimonial").append("<p><a class=\"toggler\" href=\"#\">Toggle transcript for this video &raquo;</a></p>");
	$("div.transcript").hide();
	$("div.testimonial a.toggler").click(function() {
		$(this).parent().prev().prev().slideToggle('medium');
		return false;
	});
});