if (go) {

WW.teach = { 
	getFile : function(url, target) { 
		var 
			html = $.ajax({ 
				url: url,
				async: false,
				dataType: "html"
			}).responseText
		;
		$(target).text(html);
	} 
};  

// collapsible sections - hide the pre blocks 
$( '.section pre' ).hide(); 
// show or hide code
$('.section p').toggle(function() {
  $(this).parent().find('pre').show();
}, function() {
  $(this).parent().find('pre').hide();
});


}

