jQuery(function($) {
				// This will display the current page's HTML, in the current page.
				// Recursion will one day blow my mind beyond repair.
				$('#self').text($('html').html());
				
				$.syntax();
			});
