$(document).ready(function() {
	$('#reviews').jshowoff({
		speed: 4000
	});

	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});
	
	$("a[href*=.pdf]").click(function(){
		window.open(this.href);
		return false;
	});
});

