<?php header( 'Location: http://virginiamcclain.blogspot.com/' ); ?>
<?php include ('content/setup.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
	<title>Virginia McClain.com :: <?php echo ($category) ?></title>
	<link rel="stylesheet" type="text/css" href="/styles/screen.css" />
	<style type='text/css'>
		body
		{
			background-color: rgb(<?php echo ($high_red.','.$high_green.','.$high_blue); ?>);
		}
		#Navigation, #Content
		{
			background-color: rgba(<?php echo ($low_red.','.$low_green.','.$low_blue); ?>, 0.7);
		}
		#Navigation li a:hover, #Navigation li a.Current, #Content a:hover
		{
			background-color: rgba(<?php echo ($low_red.','.$low_green.','.$low_blue); ?>, 0.4);
		}
		#Banner, #Banner a
		{
			color: rgba(<?php echo ($low_red.','.$low_green.','.$low_blue); ?>, 0.7);
		}
	</style>
	<script type='text/javascript' src='/scripts/FancyZoom.js'></script>
	<script type='text/javascript' src='/scripts/FancyZoomHTML.js'></script>
	<script type='text/javascript' src='/scripts/scripts.js'></script>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="description" content="Virginia McClain: Writer, Climber, Lover of Dogs" />
	<meta name="author" content="Ryan Price @ http://www.ryansdesigns.com" />
	<meta name="copyright" content="Virginia McClain" />
	<meta name="MSSmartTagsPreventParsing" content="TRUE" />
</head>
<body>
	<h1 id="Banner"><a href='main'><img src="/images/Virginia_McClain.png" alt="Virginia McClain" /></a></h1>
	<ul id='Navigation'>
		<li<?php if ( $category == "main") echo (" class='Current'");?>><a href='/main'>main</a></li>
		<li<?php if ( $category == "writing") echo (" class='Current'");?>><a href='/writing'>writing</a>
		</li>
		<li<?php if ( $category == "photos") echo (" class='Current'");?>><a href='/photos'>photos</a></li>
		<li<?php if ( $category == "pets") echo (" class='Current'");?>><a href='/pets'>pets</a></li>
		<li<?php if ( $category == "links") echo (" class='Current'");?>><a href='/links'>links</a></li>
	</ul>
	<div id='Content'>
		<?php
			switch ($category)
			{
				case "main":
				case "links":
				case "photos":
				case "pets":
				case "writing":
					include("content/".$category.".php");
					break;
				default:
					include("content/main.html");
			}
		?>
		<p id='Footer' class='aside'>All contents copyright &copy; 2006&ndash;2007 Virginia McClain. All rights reserved.</p>
	</div>
</body>
</html>