<?php require_once("../res/x5engine.php"); ?>
<?php
$blog = new imBlog();
$data = $blog->parseUrlArray(@$_GET);
if (!$data['valid']) {
	header('Location: index.php', true, 302);
}
?>
<!DOCTYPE html><!-- HTML5 -->
<html prefix="og: http://ogp.me/ns#" lang="en-GB" dir="ltr">
	<head>
		<title><?php echo $blog->pageTitle('Captn\'s Lounge Studios', ' - '); ?></title>
		<meta charset="utf-8" />
		<!--[if IE]><meta http-equiv="ImageToolbar" content="False" /><![endif]-->
		<meta name="author" content="Nigel Aves" />
		<meta name="generator" content="Incomedia WebSite X5 Pro 2026.1.9 - www.websitex5.com" />
		<meta name="description" content="<?php 
   $urlData = $blog->parseUrlArray(@$_GET); 
   if ( 
      ( array_key_exists('slug', $urlData) || array_key_exists('id', $urlData) ) && 
      strlen(trim($blog->pageDescription())) <= 0 
   ) { 
      echo ''; 
   } else { 
      echo $blog->pageDescription(); 
   } 
?>" />
		<meta name="keywords" content="<?php 
   $urlData = $blog->parseUrlArray(@$_GET); 
   if ( 
      ( array_key_exists('slug', $urlData) || array_key_exists('id', $urlData) ) && 
      strlen(trim($blog->pageKeywords())) <= 0 
   ) { 
      echo ''; 
   } else { 
      echo $blog->pageKeywords(); 
   } 
?>" />
		<meta property="og:locale" content="en_GB" />
<?php if (isset($data['id'])) { echo $blog->getOpengraphTags($data['id'], "\t\t"); } ?>
		<meta name="viewport" content="width=device-width, initial-scale=1" />
		
		<link rel="stylesheet" href="../style/reset.css?2026-1-9-0" media="screen,print" />
		<link rel="stylesheet" href="../style/print.css?2026-1-9-0" media="print" />
		<link rel="stylesheet" href="../style/style.css?2026-1-9-0" media="screen,print" />
		<link rel="stylesheet" href="../style/template.css?2026-1-9-0" media="screen" />
		<link rel="stylesheet" href="../pluginAppObj/imHeader_pluginAppObj_10/custom.css" media="screen, print" />
		<link rel="stylesheet" href="../pluginAppObj/imFooter_pluginAppObj_02/custom.css" media="screen, print" />
		<link rel="stylesheet" href="../blog/style.css?2026-1-9-0-639201634804457886" media="screen,print" />
		<script src="../res/jquery.js?2026-1-9-0"></script>
		<script src="../res/x5engine.js?2026-1-9-0" data-files-version="2026-1-9-0"></script>		<script src="../res/x5engine.elements.js?2026-1-9-0"></script>
		<script src="../res/swiper-bundle.min.js?2026-1-9-0"></script>
		<link rel="stylesheet" href="../res/swiper-bundle.min.css?2026-1-9-0" />
		<script src="../res/handlebars-min.js?2026-1-9-0"></script>
		<script src="../res/card-blog.js?2026-1-9-0"></script>
		<script src="../blog/x5blog.js?2026-1-9-0"></script>
		<script src="../pluginAppObj/imHeader_pluginAppObj_10/main.js"></script>
		<script src="../pluginAppObj/imFooter_pluginAppObj_02/main.js"></script>
		<script>
			window.onload = function(){ checkBrowserCompatibility('Your browser does not support the features necessary to display this website.','Your browser may not support the features necessary to display this website.','[1]Update your browser[/1] or [2]continue without updating[/2].','http://outdatedbrowser.com/'); };
			x5engine.settings.currentPath = '../';
			x5engine.utils.currentPagePath = 'blog/index.php';
			x5engine.boot.push(function () { x5engine.imPageToTop.initializeButton({}); });
		</script>
		<link rel="alternate" type="application/rss+xml" title="" href="../blog/x5feed.php" />
		<link rel="alternate" type="application/rss+xml" title="Grab Our Feed" href="../x5feed.php" /><?php
$blogBaseUrl = $imSettings['general']['url'] . 'blog/';
$urlData = $blog->parseUrlArray(@$_GET);
$numPosts = $blog->getPostsCount();
$pagStart = array_key_exists("start", $urlData) ? $urlData['start'] : 0;
$pagLength = $imSettings['blog']['home_posts_number'];
$isPostPage = false;
if (array_key_exists('slug', $urlData)) {
	$isPostPage = true;
	$href = $blogBaseUrl . '?' . $urlData['slug'];
}
else if (array_key_exists('id', $urlData)) {
	$isPostPage = true;
	$href = $blogBaseUrl . $blog->getSlugUrl($urlData['id']);
}
else if (array_key_exists('category', $urlData)) {
	$category = $blog->getUnescapedCategory($urlData['category']);
	if ($category !== NULL) {
		$href = $blogBaseUrl . '?category=' . urlencode(str_replace(' ', '_', $category));
	}
}
else if (array_key_exists('author', $urlData)) {
	$author = $blog->getUnescapedAuthor($urlData['author']);
	if ($author !== NULL) {
		$href = $blogBaseUrl . '?author=' . urlencode(str_replace(' ', '_', $author));
	}
}
else if (array_key_exists('tag', $urlData)) {
	$href = $blogBaseUrl . '?tag=' . urlencode($urlData['tag']);
}
else if (array_key_exists('month', $urlData)) {
	$href = $blogBaseUrl . '?month=' . urlencode($urlData['month']);
}
else {
	$href = $blogBaseUrl;
}
if ($isPostPage || $pagStart == 0) {
	echo '<link rel="canonical" href="'. $href. '"/>' . PHP_EOL;
}
if (!$isPostPage && $numPosts > $pagLength) {
	if ($pagStart - $pagLength >= 0) {
		$prev = 'start=' . ($pagStart - $pagLength) . '&length=' . $pagLength;
		$prev = ($href == $blogBaseUrl) ? '?' . $prev : '&' . $prev;
		echo '<link rel="prev" href="' . $href . $prev . '"/>' . PHP_EOL;
	}
	if ($pagStart + $pagLength < $numPosts) {
		$next = 'start=' . ($pagStart + $pagLength) . '&length=' . $pagLength;
		$next = ($href == $blogBaseUrl) ? '?' . $next : '&' . $next;
		echo '<link rel="next" href="' . $href . $next . '"/>' . PHP_EOL;
	}
}
$rich_data_string = $blog->getRichDataType();
if (!is_null($rich_data_string)) {
	echo '		<script type="application/ld+json">
' . $rich_data_string . '
		</script>
';
}
?>
		<meta name="google-site-verification" content="2BlXLjpPAXDcSa1Y71JR53C2lXY9BQHEos2koc8v8lc" />
		<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
		<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
		<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
		<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
		<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
		<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
		<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
		<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
		<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
		<link rel="icon" type="image/png" sizes="192x192"  href="/android-icon-192x192.png">
		<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
		<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
		<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
		<link rel="manifest" href="/manifest.json">
		<meta name="msapplication-TileColor" content="#ffffff">
		<meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
		<meta name="theme-color" content="#ffffff">
		
		<div id="simple-cookie-banner" style="position: fixed; bottom: 0; left: 0; right: 0; background: #222; color: #fff; padding: 15px; text-align: center; font-family: sans-serif; z-index: 99999; display: none;">
		    <p style="margin: 0 0 10px 0; display: inline-block; margin-right: 15px;">We use cookies to improve your experience.<br>You are not being tracked, personal information is safe.<br>Allow cookies?</p>
		    <button onclick="acceptCookies()" style="background: #4CAF50; color: white; border: none; padding: 6px 15px; margin-right: 10px; cursor: pointer; border-radius: 3px;">Yes</button>
		    <button onclick="rejectCookies()" style="background: #f44336; color: white; border: none; padding: 6px 15px; cursor: pointer; border-radius: 3px;">No</button>
		</div>
		
		<script>
		document.addEventListener("DOMContentLoaded", function() {
		    // Check if the user already made a choice
		    if (!localStorage.getItem("cookieConsent")) {
		        document.getElementById("simple-cookie-banner").style.display = "block";
		    }
		});
		
		function acceptCookies() {
		    localStorage.setItem("cookieConsent", "yes");
		    document.getElementById("simple-cookie-banner").style.display = "none";
		    // Place your tracking scripts here (e.g., Google Analytics)
		    location.reload(); 
		}
		
		function rejectCookies() {
		    localStorage.setItem("cookieConsent", "no");
		    document.getElementById("simple-cookie-banner").style.display = "none";
		}
		</script>
		<script>x5engine.boot.push(function () {x5engine.analytics.setPageView({ "postUrl": "../analytics/wsx5analytics.php" });});</script>

	</head>
	<body>
		<div id="imPageExtContainer">
			<div id="imPageIntContainer">
				<span data-nosnippet><a class="screen-reader-only-even-focused" href="#imGoToCont" title="Skip the main menu">Go to content</a></span>
				<div id="imHeaderBg"></div>
				<div id="imPage">
					<header id="imHeader">
						<h1 class="imHidden"><?php echo $blog->pageHeaderTitle('Captn\'s Lounge Studios', ' - '); ?></h1>
						<div id="imHeaderObjects"><div id="imHeader_imObjectTitle_06_wrapper" class="template-object-wrapper"><div id="imHeader_imObjectTitle_06"><span id ="imHeader_imObjectTitle_06_text" >Captn's Lounge Studios</span></div></div><div id="imHeader_imObjectImage_08_wrapper" class="template-object-wrapper"><div id="imHeader_imObjectImage_08"><div id="imHeader_imObjectImage_08_container"><img src="../images/2017-Captns-Lounge-Logo-Build-neg.webp" alt="Captn&#39;s Lounge Logo." title="News at the speed of right." width="430" height="120" />
</div></div></div><div id="imHeader_imObjectSearch_03_wrapper" class="template-object-wrapper"><div id="imHeader_imObjectSearch_03"><form id="imHeader_imObjectSearch_03_form" action="../imsearch.php" method="get"><fieldset><div id="imHeader_imObjectSearch_03_fields_container" role="search"><input type="text" id="imHeader_imObjectSearch_03_field" name="search" value="" placeholder="Search Website:" aria-label="Search Website:" /><button id="imHeader_imObjectSearch_03_button">Search</button></div></fieldset></form><script>$('#imHeader_imObjectSearch_03_button').click(function() { $(this).prop('disabled', true); setTimeout(function(){ $('#imHeader_imObjectSearch_03_button').prop('disabled', false); }, 900); $('#imHeader_imObjectSearch_03_form').submit(); return false; });</script></div></div><div id="imHeader_imMenuObject_09_wrapper" class="template-object-wrapper"><!-- UNSEARCHABLE --><span data-nosnippet><a id="imHeader_imMenuObject_09_skip_menu" href="#imHeader_imMenuObject_09_after_menu" class="screen-reader-only-even-focused">Skip menu</a></span><div id="imHeader_imMenuObject_09"><nav id="imHeader_imMenuObject_09_container"><button type="button" class="clear-button-style hamburger-button hamburger-component" aria-label="Show menu"><span class="hamburger-bar"></span><span class="hamburger-bar"></span><span class="hamburger-bar"></span></button><div class="hamburger-menu-background-container hamburger-component">
	<div class="hamburger-menu-background menu-mobile menu-mobile-animated hidden">
		<button type="button" class="clear-button-style hamburger-menu-close-button" aria-label="Close"><span aria-hidden="true">&times;</span></button>
	</div>
</div>
<ul class="menu-mobile-animated hidden">
	<li class="imMnMnFirst imPage" data-link-paths=",/index.html,/">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../index.html">
Home Page		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/cit-network-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network-1.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy-1.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Featured Videos</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Featured Videos" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/phil-plait---astronomer.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../phil-plait---astronomer.html">
Phil Plait - Astronomer		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/where-do-you-get-your-news.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../where-do-you-get-your-news.html">
Where Do You Get Your News		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/chat-gpt.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chat-gpt.html">
Chat GPT		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/speakeasy-10th.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../speakeasy-10th.html">
Speakeasy 10th		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-speakeasy---longmont-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-speakeasy---longmont-1.html">
The Speakeasy - Longmont		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/exotic-elephant--1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../exotic-elephant--1.html">
Exotic Elephant!		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-war-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-war-.html">
Rational War?		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/chef-keith-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chef-keith-1.html">
Chef Keith		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">All Our Shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for All Our Shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/cit-network.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/actors-take.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../actors-take.html">
Actors Take		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/what-a-director-needs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../what-a-director-needs.html">
What A Director Needs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/mis-cel-la-ne-ous.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mis-cel-la-ne-ous.html">
Mis-cel-la-ne-ous		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/theatre-on-mondays.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../theatre-on-mondays.html">
Theatre On Mondays		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/over-the-edge.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../over-the-edge.html">
Over The Edge		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/newsworthy-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../newsworthy-series.html">
Newsworthy Series		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/list-of-all-shows.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../list-of-all-shows.html">
List of all Shows		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/swing-the-web-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../swing-the-web-series.html">
Swing The Web Series		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">miscellaneous shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for miscellaneous shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/zozobra-aka-old-man-gloom.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../zozobra-aka-old-man-gloom.html">
Zozobra aka Old Man Gloom		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/aactfest.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../aactfest.html">
AACTFest		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/separation-of-church-and-state.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../separation-of-church-and-state.html">
Separation Of Church and State		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/id-theft-prevention.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../id-theft-prevention.html">
ID Theft Prevention		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/action-and-moments-in-between.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../action-and-moments-in-between.html">
Action and moments in between		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/why-am-i-using-this-word-now.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../why-am-i-using-this-word-now.html">
Why am I using this word now		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/caesuras-endstops-enjambments.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../caesuras-endstops-enjambments.html">
Caesuras endstops enjambments		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/conflict.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../conflict.html">
Conflict		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/its-a-build.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../its-a-build.html">
its a build		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/as-you-like-it-act-5-scene-2.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../as-you-like-it-act-5-scene-2.html">
As You Like It Act 5 scene 2		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/midsummer-night-s-dream-act-2-scene-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../midsummer-night-s-dream-act-2-scene-1.html">
Midsummer Night&#39;s Dream Act 2 scene 1		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/twelth-night-act-1-scene-5.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../twelth-night-act-1-scene-5.html">
Twelth Night Act 1 scene 5		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/the-comedy-of-errors.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-comedy-of-errors.html">
The Comedy of Errors		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">School Kids Edition of OZ</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for School Kids Edition of OZ" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/brief-history-of-oz-magazine.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../brief-history-of-oz-magazine.html">
Brief History of Oz Magazine		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/school-kids-edition-of-oz.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../school-kids-edition-of-oz.html">
School Kids Edition of Oz		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-verses-the-establishment.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-verses-the-establishment.html">
Oz verses The Establishment		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-little-red-schoolbook.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-little-red-schoolbook.html">
The Little Red Schoolbook		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-front-covers.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-front-covers.html">
Oz Front Covers		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/oz-obituary.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-obituary.html">
Oz Obituary		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Reefer Madness 1936</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Reefer Madness 1936" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/propaganda-to-cult-classic.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../propaganda-to-cult-classic.html">
Propaganda to Cult Classic		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/anti-reefer-movement.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../anti-reefer-movement.html">
Anti-Reefer Movement		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/medical-community.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../medical-community.html">
Medical Community		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/definition-of-reefer-s-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../definition-of-reefer-s-.html">
Definition of Reefer(s)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/movie---reefer-madness.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../movie---reefer-madness.html">
Movie - Reefer Madness		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/mortal-legacy-2010.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mortal-legacy-2010.html">
Mortal Legacy 2010		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/about-us.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../about-us.html">
About Us		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/photographs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../photographs.html">
Photographs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">In Memory of Kirk and Tom</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for In Memory of Kirk and Tom" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/kirk_weilepp.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../kirk_weilepp.html">
Kirk_Weilepp		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/wibw-tv-am-fm.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../wibw-tv-am-fm.html">
WIBW-TV-AM-FM		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/celebration-of-life--video-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../celebration-of-life--video-.html">
Celebration of Life (video)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/thomas--tg--lewis.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../thomas--tg--lewis.html">
Thomas &quot;TG&quot; Lewis		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Contact Us</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Contact Us" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class=" imPage" data-link-paths=",/nigel-aves.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../nigel-aves.html">
Nigel Aves		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Blog</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Blog" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imLevel" data-link-paths=",/blog/index.php,/blog/" data-link-hash="-1004162301"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../blog/index.php" class="label" onclick="return x5engine.utils.location('../blog/index.php', null, false)">Blog: Main page</a></div></div></li><li class="imMnMnLast imLevel" data-link-paths=",/imsearch.php" data-link-hash="-1004162377"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../imsearch.php" class="label" onclick="return x5engine.utils.location('../imsearch.php', null, false)">Search</a></div></div></li></ul></li><li class="imMnMnLast imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Feed</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Feed" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class=" imPage" data-link-paths=",/feed.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../feed.html">
Feed		</a>
</div>
</div>
	</li></ul></li></ul></nav></div><a id="imHeader_imMenuObject_09_after_menu" class="screen-reader-only-even-focused"></a><!-- UNSEARCHABLE END --><script>
var imHeader_imMenuObject_09_settings = {
	'menuId': 'imHeader_imMenuObject_09',
	'responsiveMenuEffect': 'slide',
	'responsiveMenuLevelOpenEvent': 'click',
	'animationDuration': 1000,
}
x5engine.boot.push(function(){x5engine.initMenu(imHeader_imMenuObject_09_settings)});
$(function () {
    $('#imHeader_imMenuObject_09_container ul li').not('.imMnMnSeparator').each(function () {
        $(this).on('mouseenter', function (evt) {
            if (!evt.originalEvent) {
                evt.stopImmediatePropagation();
                evt.preventDefault();
                return;
            }
        });
    });
});
$(function () {$('#imHeader_imMenuObject_09_container ul li').not('.imMnMnSeparator').each(function () {    var $this = $(this), timeout = 0;    $this.on('mouseenter', function () {        if($(this).parents('#imHeader_imMenuObject_09_container-menu-opened').length > 0) return;         clearTimeout(timeout);        setTimeout(function () { $this.children('ul, .multiple-column').stop(false, false).fadeIn(); }, 250);    }).on('mouseleave', function () {        if($(this).parents('#imHeader_imMenuObject_09_container-menu-opened').length > 0) return;         timeout = setTimeout(function () { $this.children('ul, .multiple-column').stop(false, false).fadeOut(); }, 250);    });});});

</script>
</div><div id="imHeader_imObjectTitle_07_wrapper" class="template-object-wrapper"><div id="imHeader_imObjectTitle_07"><span id ="imHeader_imObjectTitle_07_text" >... Like nowhere else on dry land.</span></div></div><div id="imHeader_pluginAppObj_10_wrapper" class="template-object-wrapper"><!-- PayPal Donate v.4 --><div id="imHeader_pluginAppObj_10" style="direction: ltr;">
            <script>
                var container = $("#imHeader_pluginAppObj_10");
                var container_btn = "<div id='imHeader_pluginAppObj_10_container'>";  
                container.append(container_btn);
                paypaldonate_imHeader_pluginAppObj_10();
            </script>
       </div></div></div>
					</header>
					<div id="imStickyBarContainer">
						<div id="imStickyBarGraphics"></div>
						<div id="imStickyBar">
							<div id="imStickyBarObjects"><div id="imStickyBar_imMenuObject_03_wrapper" class="template-object-wrapper"><!-- UNSEARCHABLE --><span data-nosnippet><a id="imStickyBar_imMenuObject_03_skip_menu" href="#imStickyBar_imMenuObject_03_after_menu" class="screen-reader-only-even-focused">Skip menu</a></span><div id="imStickyBar_imMenuObject_03"><nav id="imStickyBar_imMenuObject_03_container"><button type="button" class="clear-button-style hamburger-button hamburger-component" aria-label="Show menu"><span class="hamburger-bar"></span><span class="hamburger-bar"></span><span class="hamburger-bar"></span></button><div class="hamburger-menu-background-container hamburger-component">
	<div class="hamburger-menu-background menu-mobile menu-mobile-animated hidden">
		<button type="button" class="clear-button-style hamburger-menu-close-button" aria-label="Close"><span aria-hidden="true">&times;</span></button>
	</div>
</div>
<ul class="menu-mobile-animated hidden">
	<li class="imMnMnFirst imPage" data-link-paths=",/index.html,/">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../index.html">
Home Page		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/cit-network-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network-1.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy-1.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Featured Videos</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Featured Videos" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/phil-plait---astronomer.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../phil-plait---astronomer.html">
Phil Plait - Astronomer		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/where-do-you-get-your-news.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../where-do-you-get-your-news.html">
Where Do You Get Your News		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/chat-gpt.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chat-gpt.html">
Chat GPT		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/speakeasy-10th.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../speakeasy-10th.html">
Speakeasy 10th		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-speakeasy---longmont-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-speakeasy---longmont-1.html">
The Speakeasy - Longmont		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/exotic-elephant--1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../exotic-elephant--1.html">
Exotic Elephant!		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-war-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-war-.html">
Rational War?		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/chef-keith-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chef-keith-1.html">
Chef Keith		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">All Our Shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for All Our Shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/cit-network.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/actors-take.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../actors-take.html">
Actors Take		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/what-a-director-needs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../what-a-director-needs.html">
What A Director Needs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/mis-cel-la-ne-ous.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mis-cel-la-ne-ous.html">
Mis-cel-la-ne-ous		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/theatre-on-mondays.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../theatre-on-mondays.html">
Theatre On Mondays		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/over-the-edge.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../over-the-edge.html">
Over The Edge		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/newsworthy-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../newsworthy-series.html">
Newsworthy Series		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/list-of-all-shows.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../list-of-all-shows.html">
List of all Shows		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/swing-the-web-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../swing-the-web-series.html">
Swing The Web Series		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">miscellaneous shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for miscellaneous shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/zozobra-aka-old-man-gloom.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../zozobra-aka-old-man-gloom.html">
Zozobra aka Old Man Gloom		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/aactfest.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../aactfest.html">
AACTFest		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/separation-of-church-and-state.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../separation-of-church-and-state.html">
Separation Of Church and State		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/id-theft-prevention.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../id-theft-prevention.html">
ID Theft Prevention		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/action-and-moments-in-between.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../action-and-moments-in-between.html">
Action and moments in between		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/why-am-i-using-this-word-now.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../why-am-i-using-this-word-now.html">
Why am I using this word now		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/caesuras-endstops-enjambments.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../caesuras-endstops-enjambments.html">
Caesuras endstops enjambments		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/conflict.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../conflict.html">
Conflict		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/its-a-build.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../its-a-build.html">
its a build		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/as-you-like-it-act-5-scene-2.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../as-you-like-it-act-5-scene-2.html">
As You Like It Act 5 scene 2		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/midsummer-night-s-dream-act-2-scene-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../midsummer-night-s-dream-act-2-scene-1.html">
Midsummer Night&#39;s Dream Act 2 scene 1		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/twelth-night-act-1-scene-5.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../twelth-night-act-1-scene-5.html">
Twelth Night Act 1 scene 5		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/the-comedy-of-errors.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-comedy-of-errors.html">
The Comedy of Errors		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">School Kids Edition of OZ</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for School Kids Edition of OZ" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/brief-history-of-oz-magazine.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../brief-history-of-oz-magazine.html">
Brief History of Oz Magazine		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/school-kids-edition-of-oz.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../school-kids-edition-of-oz.html">
School Kids Edition of Oz		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-verses-the-establishment.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-verses-the-establishment.html">
Oz verses The Establishment		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-little-red-schoolbook.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-little-red-schoolbook.html">
The Little Red Schoolbook		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-front-covers.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-front-covers.html">
Oz Front Covers		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/oz-obituary.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-obituary.html">
Oz Obituary		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Reefer Madness 1936</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Reefer Madness 1936" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/propaganda-to-cult-classic.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../propaganda-to-cult-classic.html">
Propaganda to Cult Classic		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/anti-reefer-movement.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../anti-reefer-movement.html">
Anti-Reefer Movement		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/medical-community.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../medical-community.html">
Medical Community		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/definition-of-reefer-s-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../definition-of-reefer-s-.html">
Definition of Reefer(s)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/movie---reefer-madness.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../movie---reefer-madness.html">
Movie - Reefer Madness		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/mortal-legacy-2010.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mortal-legacy-2010.html">
Mortal Legacy 2010		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/about-us.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../about-us.html">
About Us		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/photographs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../photographs.html">
Photographs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">In Memory of Kirk and Tom</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for In Memory of Kirk and Tom" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/kirk_weilepp.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../kirk_weilepp.html">
Kirk_Weilepp		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/wibw-tv-am-fm.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../wibw-tv-am-fm.html">
WIBW-TV-AM-FM		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/celebration-of-life--video-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../celebration-of-life--video-.html">
Celebration of Life (video)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/thomas--tg--lewis.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../thomas--tg--lewis.html">
Thomas &quot;TG&quot; Lewis		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Contact Us</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Contact Us" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class=" imPage" data-link-paths=",/nigel-aves.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../nigel-aves.html">
Nigel Aves		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Blog</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Blog" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class="imMnMnFirst imLevel" data-link-paths=",/blog/index.php,/blog/" data-link-hash="-1004162301"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../blog/index.php" class="label" onclick="return x5engine.utils.location('../blog/index.php', null, false)">Blog: Main page</a></div></div></li><li class="imMnMnLast imLevel" data-link-paths=",/imsearch.php" data-link-hash="-1004162377"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../imsearch.php" class="label" onclick="return x5engine.utils.location('../imsearch.php', null, false)">Search</a></div></div></li></ul></li><li class="imMnMnLast imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Feed</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Feed" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-bottom" class="open-bottom" style="" >
	<li class=" imPage" data-link-paths=",/feed.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../feed.html">
Feed		</a>
</div>
</div>
	</li></ul></li></ul></nav></div><a id="imStickyBar_imMenuObject_03_after_menu" class="screen-reader-only-even-focused"></a><!-- UNSEARCHABLE END --><script>
var imStickyBar_imMenuObject_03_settings = {
	'menuId': 'imStickyBar_imMenuObject_03',
	'responsiveMenuEffect': 'slide',
	'responsiveMenuLevelOpenEvent': 'click',
	'animationDuration': 1000,
}
x5engine.boot.push(function(){x5engine.initMenu(imStickyBar_imMenuObject_03_settings)});
$(function () {
    $('#imStickyBar_imMenuObject_03_container ul li').not('.imMnMnSeparator').each(function () {
        $(this).on('mouseenter', function (evt) {
            if (!evt.originalEvent) {
                evt.stopImmediatePropagation();
                evt.preventDefault();
                return;
            }
        });
    });
});
$(function () {$('#imStickyBar_imMenuObject_03_container ul li').not('.imMnMnSeparator').each(function () {    var $this = $(this), timeout = 0;    $this.on('mouseenter', function () {        if($(this).parents('#imStickyBar_imMenuObject_03_container-menu-opened').length > 0) return;         clearTimeout(timeout);        setTimeout(function () { $this.children('ul, .multiple-column').stop(false, false).fadeIn(); }, 250);    }).on('mouseleave', function () {        if($(this).parents('#imStickyBar_imMenuObject_03_container-menu-opened').length > 0) return;         timeout = setTimeout(function () { $this.children('ul, .multiple-column').stop(false, false).fadeOut(); }, 250);    });});});

</script>
</div></div>
						</div>
					</div>
					<div id="imSideBar">
						<div id="imSideBarObjects"><div id="imSideBar_imObjectTitle_10_wrapper" class="template-object-wrapper"><div id="imSideBar_imObjectTitle_10"><span id ="imSideBar_imObjectTitle_10_text" >Captn's Lounge</span></div></div><div id="imSideBar_imMenuObject_11_wrapper" class="template-object-wrapper"><!-- UNSEARCHABLE --><span data-nosnippet><a id="imSideBar_imMenuObject_11_skip_menu" href="#imSideBar_imMenuObject_11_after_menu" class="screen-reader-only-even-focused">Skip menu</a></span><div id="imSideBar_imMenuObject_11"><nav id="imSideBar_imMenuObject_11_container"><button type="button" class="clear-button-style hamburger-button hamburger-component" aria-label="Show menu"><span class="hamburger-bar"></span><span class="hamburger-bar"></span><span class="hamburger-bar"></span></button><div class="hamburger-menu-background-container hamburger-component">
	<div class="hamburger-menu-background menu-mobile menu-mobile-animated hidden">
		<button type="button" class="clear-button-style hamburger-menu-close-button" aria-label="Close"><span aria-hidden="true">&times;</span></button>
	</div>
</div>
<ul class="menu-mobile-animated hidden">
	<li class="imMnMnFirst imPage" data-link-paths=",/index.html,/">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../index.html">
Home Page		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/cit-network-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network-1.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy-1.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Featured Videos</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Featured Videos" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/phil-plait---astronomer.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../phil-plait---astronomer.html">
Phil Plait - Astronomer		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/where-do-you-get-your-news.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../where-do-you-get-your-news.html">
Where Do You Get Your News		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/chat-gpt.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chat-gpt.html">
Chat GPT		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/speakeasy-10th.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../speakeasy-10th.html">
Speakeasy 10th		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-speakeasy---longmont-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-speakeasy---longmont-1.html">
The Speakeasy - Longmont		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/exotic-elephant--1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../exotic-elephant--1.html">
Exotic Elephant!		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-war-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-war-.html">
Rational War?		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/chef-keith-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../chef-keith-1.html">
Chef Keith		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">All Our Shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for All Our Shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/cit-network.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../cit-network.html">
CIT Network		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/rational-alchemy.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../rational-alchemy.html">
Rational Alchemy		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/actors-take.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../actors-take.html">
Actors Take		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/what-a-director-needs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../what-a-director-needs.html">
What A Director Needs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/mis-cel-la-ne-ous.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mis-cel-la-ne-ous.html">
Mis-cel-la-ne-ous		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/theatre-on-mondays.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../theatre-on-mondays.html">
Theatre On Mondays		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/over-the-edge.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../over-the-edge.html">
Over The Edge		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/newsworthy-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../newsworthy-series.html">
Newsworthy Series		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/list-of-all-shows.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../list-of-all-shows.html">
List of all Shows		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/swing-the-web-series.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../swing-the-web-series.html">
Swing The Web Series		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">miscellaneous shows</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for miscellaneous shows" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/zozobra-aka-old-man-gloom.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../zozobra-aka-old-man-gloom.html">
Zozobra aka Old Man Gloom		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/aactfest.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../aactfest.html">
AACTFest		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/separation-of-church-and-state.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../separation-of-church-and-state.html">
Separation Of Church and State		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/id-theft-prevention.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../id-theft-prevention.html">
ID Theft Prevention		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/action-and-moments-in-between.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../action-and-moments-in-between.html">
Action and moments in between		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/why-am-i-using-this-word-now.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../why-am-i-using-this-word-now.html">
Why am I using this word now		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/caesuras-endstops-enjambments.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../caesuras-endstops-enjambments.html">
Caesuras endstops enjambments		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/conflict.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../conflict.html">
Conflict		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/its-a-build.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../its-a-build.html">
its a build		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/as-you-like-it-act-5-scene-2.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../as-you-like-it-act-5-scene-2.html">
As You Like It Act 5 scene 2		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/midsummer-night-s-dream-act-2-scene-1.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../midsummer-night-s-dream-act-2-scene-1.html">
Midsummer Night&#39;s Dream Act 2 scene 1		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/twelth-night-act-1-scene-5.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../twelth-night-act-1-scene-5.html">
Twelth Night Act 1 scene 5		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/the-comedy-of-errors.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-comedy-of-errors.html">
The Comedy of Errors		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">School Kids Edition of OZ</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for School Kids Edition of OZ" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/brief-history-of-oz-magazine.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../brief-history-of-oz-magazine.html">
Brief History of Oz Magazine		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/school-kids-edition-of-oz.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../school-kids-edition-of-oz.html">
School Kids Edition of Oz		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-verses-the-establishment.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-verses-the-establishment.html">
Oz verses The Establishment		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/the-little-red-schoolbook.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../the-little-red-schoolbook.html">
The Little Red Schoolbook		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/oz-front-covers.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-front-covers.html">
Oz Front Covers		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/oz-obituary.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../oz-obituary.html">
Oz Obituary		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Reefer Madness 1936</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Reefer Madness 1936" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/propaganda-to-cult-classic.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../propaganda-to-cult-classic.html">
Propaganda to Cult Classic		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/anti-reefer-movement.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../anti-reefer-movement.html">
Anti-Reefer Movement		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/medical-community.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../medical-community.html">
Medical Community		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/definition-of-reefer-s-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../definition-of-reefer-s-.html">
Definition of Reefer(s)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/movie---reefer-madness.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../movie---reefer-madness.html">
Movie - Reefer Madness		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imPage" data-link-paths=",/mortal-legacy-2010.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../mortal-legacy-2010.html">
Mortal Legacy 2010		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/about-us.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../about-us.html">
About Us		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/photographs.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../photographs.html">
Photographs		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">In Memory of Kirk and Tom</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for In Memory of Kirk and Tom" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imPage" data-link-paths=",/kirk_weilepp.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../kirk_weilepp.html">
Kirk_Weilepp		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/wibw-tv-am-fm.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../wibw-tv-am-fm.html">
WIBW-TV-AM-FM		</a>
</div>
</div>
	</li><li class="imMnMnMiddle imPage" data-link-paths=",/celebration-of-life--video-.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../celebration-of-life--video-.html">
Celebration of Life (video)		</a>
</div>
</div>
	</li><li class="imMnMnLast imPage" data-link-paths=",/thomas--tg--lewis.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../thomas--tg--lewis.html">
Thomas &quot;TG&quot; Lewis		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Contact Us</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Contact Us" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class=" imPage" data-link-paths=",/nigel-aves.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../nigel-aves.html">
Nigel Aves		</a>
</div>
</div>
	</li></ul></li><li class="imMnMnMiddle imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Blog</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Blog" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class="imMnMnFirst imLevel" data-link-paths=",/blog/index.php,/blog/" data-link-hash="-1004162301"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../blog/index.php" class="label" onclick="return x5engine.utils.location('../blog/index.php', null, false)">Blog: Main page</a></div></div></li><li class="imMnMnLast imLevel" data-link-paths=",/imsearch.php" data-link-hash="-1004162377"><div class="label-wrapper"><div class="label-inner-wrapper"><a href="../imsearch.php" class="label" onclick="return x5engine.utils.location('../imsearch.php', null, false)">Search</a></div></div></li></ul></li><li class="imMnMnLast imLevel"><div class="label-wrapper"><div class="label-inner-wrapper"><span class="label">Feed</span><button type="button" class="screen-reader-only clear-button-style toggle-submenu" aria-label="Show submenu for Feed" aria-expanded="false" onclick="if ($(this).attr('aria-expanded') == 'true') event.stopImmediatePropagation(); $(this).closest('.imLevel').trigger(jQuery.Event($(this).attr('aria-expanded') == 'false' ? 'mouseenter' : 'mouseleave', { originalEvent: event } ));">▼</button></div></div><ul data-original-position="open-right" class="open-right" style="" >
	<li class=" imPage" data-link-paths=",/feed.html">
<div class="label-wrapper">
<div class="label-inner-wrapper">
		<a class="label" href="../feed.html">
Feed		</a>
</div>
</div>
	</li></ul></li></ul></nav></div><a id="imSideBar_imMenuObject_11_after_menu" class="screen-reader-only-even-focused"></a><!-- UNSEARCHABLE END --><script>
var imSideBar_imMenuObject_11_settings = {
	'menuId': 'imSideBar_imMenuObject_11',
	'responsiveMenuEffect': 'slide',
	'responsiveMenuLevelOpenEvent': 'click',
	'animationDuration': 1000,
}
x5engine.boot.push(function(){x5engine.initMenu(imSideBar_imMenuObject_11_settings)});
$(function () {
    $('#imSideBar_imMenuObject_11_container ul li').not('.imMnMnSeparator').each(function () {
        $(this).on('mouseenter', function (evt) {
            if (!evt.originalEvent) {
                evt.stopImmediatePropagation();
                evt.preventDefault();
                return;
            }
        });
    });
});
$(function () {$('#imSideBar_imMenuObject_11_container ul li').not('.imMnMnSeparator').each(function () {    var $this = $(this), timeout = 0;    $this.on('mouseenter', function () {        if($(this).parents('#imSideBar_imMenuObject_11_container-menu-opened').length > 0) return;         clearTimeout(timeout);        setTimeout(function () {$this.children('ul, .multiple-column').stop(false, false).addClass('menu-slide-fade');}, 250);    }).on('mouseleave', function () {        if($(this).parents('#imSideBar_imMenuObject_11_container-menu-opened').length > 0) return;         timeout = setTimeout(function () { $this.children('ul, .multiple-column').stop(false, false).removeClass('menu-slide-fade'); }, 250);    });});});

</script>
</div></div>
					</div>
					<div id="imContentGraphics"></div>
					<main id="imContent">
						<a id="imGoToCont"></a>
						<div id="imBlogPage" class="<?php echo (isset($data['id']) ? 'imBlogArticle' : 'imBlogHome'); ?>"><<?php echo (isset($data['id']) ? 'article' : 'div'); ?> id="imBlogContent"><?php
						$blog->setCommentsPerPage(10);
						if(isset($data['id']))
							$blog->showPost($data['id'],1);
						else if(isset($data['category']))
							$blog->showCategory($data['category']);
						else if(isset($data['author']))
							$blog->showAuthor($data['author']);
						else if(isset($data['tag']))
							$blog->showTag($data['tag']);
						else if(isset($data['month']))
							$blog->showMonth($data['month']);
						else if(isset($data['search']))
							$blog->showSearch($data['search']);
						else
							$blog->showLast(10);
						?>
						</<?php echo (isset($data['id']) ? 'article' : 'div'); ?>>
						<aside id="imBlogSidebar">
							<span data-nosnippet><a id="imSkipBlock0" href="#imSkipBlock1" class="screen-reader-only-even-focused">Skip block Recent Posts</a></span>
							<div class="imBlogBlock" id="imBlogBlock0" >
								<div class="imBlogBlockTitle">Recent Posts</div>
								<div class="imBlogBlockContent">
						<?php $blog->showBlockLast(4) ?>
								</div>
							</div>
							<span data-nosnippet><a id="imSkipBlock1" href="#imSkipBlock2" class="screen-reader-only-even-focused">Skip block Monthly Posts</a></span>
							<div class="imBlogBlock" id="imBlogBlock1" >
								<div class="imBlogBlockTitle">Monthly Posts</div>
								<div class="imBlogBlockContent">
						<?php $blog->showBlockMonths(4) ?>
								</div>
							</div>
							<span data-nosnippet><a id="imSkipBlock2" href="#imSkipBlock3" class="screen-reader-only-even-focused">Skip block Categories</a></span>
							<div class="imBlogBlock" id="imBlogBlock2" >
								<div class="imBlogBlockTitle">Categories</div>
								<div class="imBlogBlockContent">
						<?php $blog->showBlockCategories(4) ?>
								</div>
							</div>
							<span data-nosnippet><a id="imSkipBlock3" href="#imSkipBlock4" class="screen-reader-only-even-focused">Skip block Clouds</a></span>
							<div class="imBlogBlock" id="imBlogBlock3" >
								<div class="imBlogBlockTitle">Clouds</div>
								<div class="imBlogBlockContent">
						<?php $blog->showBlockCloud('categories') ?>
								</div>
							</div>
						</aside>
						<a id="imSkipBlock4" class="screen-reader-only-even-focused"></a>
						<script>
							x5engine.boot.push(function () { 
								window.scrollTo(0, 0);
							});
						</script>
						<script>
							x5engine.boot.push(function () {
								x5engine.blogSidebarScroll({ enabledBreakpoints: ['7bb370f1d49f7ce2f5c35e79de80b0f6', 'e484d3bd5bb4674a234ae005a372dcde', '72e5146e7d399bc2f8a12127e43469f1'] });
								var postHeightAtDesktop = 300,
									postWidthAtDesktop = 1073;
								if ($('#imBlogPage').hasClass('imBlogArticle')) {
									$('#imPageExtContainer').addClass('imBlogExtArticle');
									var coverResizeTo = null,
										coverWidth = 0;
									x5engine.utils.onElementResize($('.imBlogPostCover')[0], function (rect, target) {
										if (coverWidth == rect.width) {
											return;
										}
										coverWidth = rect.width;
										if (!!coverResizeTo) {
											clearTimeout(coverResizeTo);
										}
										coverResizeTo = setTimeout(function() {
											$('.imBlogPostCover').height(postHeightAtDesktop * coverWidth / postWidthAtDesktop + 'px');
										}, 50);
									});
								}
							});
						</script>
						</div>
						<script>
						   x5engine.boot.push(
						      function(){
						         if ($('#imBlogPage').hasClass('imBlogArticle')) {
						            if ($("meta[name='description']").length > 0) {
						               if ($("meta[name='description']").attr("content").trim().length <= 0) {
						                   $("meta[name='description']").attr("content", "" );
						               }
						            } else {
						               $("meta[name='generator']").after("<meta name=\"description\" content=\"\">");
						            }
						            if ($("meta[name='keywords']").length > 0) {
						               if ($("meta[name='keywords']").attr("content").trim().length <= 0) {
						                  $("meta[name='keywords']").attr("content", "" );
						               }
						            } else {
						               $("meta[name='description']").after("<meta name=\"keywords\" content=\"\">");
						            }
						         }
						      }
						   );
						</script>
						
					</main>
					<div id="imFooterBg"></div>
					<footer id="imFooter">
						<div id="imFooterObjects"><div id="imFooter_imHTMLObject_06_wrapper" class="template-object-wrapper"><div id="imFooter_imHTMLObject_06" class="imHTMLObject" style="text-align: center; width: 100%; overflow: hidden;"><a href="https://linked.mywebtraffic.co.uk" title="Link Exchange">Link Exchange</a><br>
<a href="http://www.digitalpulsehub.top/2025/01/7-motivi-per-cui-ethereum-sta-guidando.html" title="Digitalpulsehub">Digitalpulsehub</a></div></div><div id="imFooter_imTextObject_03_wrapper" class="template-object-wrapper"><div id="imFooter_imTextObject_03">
	<div data-index="0"  class="text-tab-content grid-prop current-tab "  id="imFooter_imTextObject_03_tab0" style="opacity: 1; " role="tabpanel" tabindex="0">
		<div class="text-inner">
			<div class="imTACenter"><div><span class="fs12lh1-5 cf1"><b>BROUGHT TO YOU BY</b></span></div><div><span class="cf1">Copyright © 2026 Captn's Lounge Studio. All Rights Reserved.</span></div><div><br></div></div>
		</div>
	</div>

</div>
</div><div id="imFooter_imTextObject_01_wrapper" class="template-object-wrapper"><div id="imFooter_imTextObject_01">
	<div data-index="0"  class="text-tab-content grid-prop current-tab "  id="imFooter_imTextObject_01_tab0" style="opacity: 1; " role="tabpanel" tabindex="0">
		<div class="text-inner">
			<div data-line-height="1.15" class="lh1-15 imTACenter"><div class="imTACenter"><div><span class="fs12lh1-15 cf1"><b>COPYRIGHT</b></span></div><div class="imTACenter"><strong><b><span class="fs12lh1-15 ff1"><span class="cf1">All videos and this web site are copyrighted to the </span></span></b></strong></div><div class="imTACenter"><strong><b><span class="fs12lh1-15 ff1"><span class="cf1">Captn's Lounge Studios. All rights reserved.</span></span></b></strong></div></div></div>
		</div>
	</div>

</div>
</div><div id="imFooter_pluginAppObj_02_wrapper" class="template-object-wrapper"><!-- Social Icons v.24 --><div id="imFooter_pluginAppObj_02">
            <div id="soc_imFooter_pluginAppObj_02"  >
                <div class="wrapper horizontal flat none">
                	<div class='social-icon flat'><a href='https://fb.me/' target='_blank' aria-label='facebook'><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M57,93V54H70.14l2-15H57V29.09c0-4.39.94-7.39,7.24-7.39H72V8.14a98.29,98.29,0,0,0-11.6-.6C48.82,7.54,41,14.61,41,27.59V39H27V54H41V93H57Z"/></svg><span class='fallbacktext'>Fb</span></a></div><div class='social-icon flat'><a href='https://www.linkedin.com' target='_blank' aria-label='linkedin'><svg  xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g><path d="M30,86H15V39H30V86ZM23.19,31.82a8.47,8.47,0,1,1,8.47-8.47A8.47,8.47,0,0,1,23.19,31.82ZM85,86H71V62.4c0-5.45.07-12.47-7.41-12.47S55,55.87,55,62V86H41V39H54v4H53.87c1.95-1,6.61-6.76,13.72-6.76C82.37,36.24,85,46.81,85,59.47V86Z"/></g></svg><span class='fallbacktext'>In</span></a></div><div class='social-icon flat'><a href='https://instagram.com/' target='_blank' aria-label='instagram'><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g><path d="M50,15.16c11.35,0,12.69,0,17.17.25a23.52,23.52,0,0,1,7.89,1.46,14.07,14.07,0,0,1,8.07,8.07,23.52,23.52,0,0,1,1.46,7.89c0.2,4.48.25,5.83,0.25,17.17s0,12.69-.25,17.17a23.52,23.52,0,0,1-1.46,7.89,14.07,14.07,0,0,1-8.07,8.07,23.52,23.52,0,0,1-7.89,1.46c-4.48.2-5.82,0.25-17.17,0.25s-12.69,0-17.17-.25a23.52,23.52,0,0,1-7.89-1.46,14.07,14.07,0,0,1-8.07-8.07,23.52,23.52,0,0,1-1.46-7.89c-0.2-4.48-.25-5.83-0.25-17.17s0-12.69.25-17.17a23.52,23.52,0,0,1,1.46-7.89,14.07,14.07,0,0,1,8.07-8.07,23.52,23.52,0,0,1,7.89-1.46c4.48-.2,5.83-0.25,17.17-0.25M50,7.5c-11.54,0-13,0-17.52.26a31.19,31.19,0,0,0-10.32,2A21.73,21.73,0,0,0,9.73,22.16a31.19,31.19,0,0,0-2,10.32C7.55,37,7.5,38.46,7.5,50s0,13,.26,17.52a31.19,31.19,0,0,0,2,10.32A21.73,21.73,0,0,0,22.16,90.27a31.19,31.19,0,0,0,10.32,2c4.53,0.21,6,.26,17.52.26s13,0,17.52-.26a31.19,31.19,0,0,0,10.32-2A21.73,21.73,0,0,0,90.27,77.84a31.19,31.19,0,0,0,2-10.32c0.21-4.53.26-6,.26-17.52s0-13-.26-17.52a31.19,31.19,0,0,0-2-10.32A21.73,21.73,0,0,0,77.84,9.73a31.19,31.19,0,0,0-10.32-2C63,7.55,61.54,7.5,50,7.5h0Z"/><path d="M50,28.18A21.82,21.82,0,1,0,71.82,50,21.82,21.82,0,0,0,50,28.18Zm0,36A14.17,14.17,0,1,1,64.17,50,14.17,14.17,0,0,1,50,64.17Z"/><circle cx="72.69" cy="27.31" r="5.1"/></g></svg><span class='fallbacktext'>Ig</span></a></div><div class='social-icon flat'><a href='https://www.pintrest.com/' target='_blank' aria-label='pinterest'><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g><path d="M35.18,91.62a33.53,33.53,0,0,0,7.68-14.51c0.6-2.31,3.08-11.76,3.08-11.76C47.55,68.44,52.26,71,57.28,71c14.92,0,25.66-13.72,25.66-30.76,0-16.34-13.33-28.56-30.49-28.56C31.11,11.72,19.77,26,19.77,41.64c0,7.25,3.86,16.28,10,19.16,0.94,0.44,1.44.24,1.65-.66,0.16-.69,1-4,1.37-5.61a1.48,1.48,0,0,0-.34-1.42,19.24,19.24,0,0,1-3.68-11.29c0-10.91,8.26-21.46,22.33-21.46,12.15,0,20.66,8.28,20.66,20.12,0,13.38-6.76,22.65-15.55,22.65-4.85,0-8.49-4-7.32-8.94C50.33,48.32,53,42,53,37.73c0-3.8-2-7-6.26-7-5,0-8.95,5.13-8.95,12a17.85,17.85,0,0,0,1.48,7.34S34.4,70.84,33.5,74.7c-1,4.27-1.53,10.49-.17,14.19C33.62,89.66,34.62,92.23,35.18,91.62Z"/></g></svg><span class='fallbacktext'>Pt</span></a></div>
                </div>

            </div>
                <script>
                    socialicons_imFooter_pluginAppObj_02();
                </script>
        </div></div><div id="imFooter_imTextObject_05_wrapper" class="template-object-wrapper"><div id="imFooter_imTextObject_05">
	<div data-index="0"  class="text-tab-content grid-prop current-tab "  id="imFooter_imTextObject_05_tab0" style="opacity: 1; " role="tabpanel" tabindex="0">
		<div class="text-inner">
			<div class="imTACenter"><span class="fs24lh1-5 ff1">Captn's Lounge Web-Site was designed and built by Nigel Aves using <a href="https://www.websitex5.com/en/" target="_blank" class="imCssLink">WebSite X5 </a></span></div>
		</div>
	</div>

</div>
</div></div>
					</footer>
				</div>
				<span data-nosnippet class="screen-reader-only-even-focused" style="bottom: 0;"><a href="#imGoToCont" title="Read this page again">Back to content</a></span>
			</div>
		</div>
		
		<noscript class="imNoScript"><div class="alert alert-red">To use this website you must enable JavaScript.</div></noscript>
	</body>
</html>
