// Document Ready

$(document).ready(function(){
						   
	$('#text').hide();
	$('a#toggle-text').click(function() {
	  $('#text').toggle(400);
	  return false;
	});
	
	// open a link in a new window
	jQuery("a[href$='.pdf'], ._blank").click(function(){
		var newwindow = window.open(this.href, '_blank');
		newwindow.focus();
		return false;
	});

});



