$(document).ready(function(){
	$("#show-testimonial-disclaimer").click(function(e){
		e.preventDefault();
		$("#testimonial-disclaimer").toggle();
	});
	
	$('a[rel=external]').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	
});