diff --git a/wp-content/themes/copyblogger/404.php b/wp-content/themes/copyblogger/404.php
new file mode 100755
index 0000000000000000000000000000000000000000..250fa91adc67ebb3c5098f31b981c62f4a219dd9
--- /dev/null
+++ b/wp-content/themes/copyblogger/404.php
@@ -0,0 +1,24 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="content" class="page">
+			<h1>My 404 page is better than yours.</h1>
+			<div class="entry">
+				<p>Welcome to the seedy underbelly of this otherwise upstanding Web site. Please choose from the following in order to get back on track:</p>
+				<ul>
+					<li>Try the ol' back button on your browser&#8212;it <em>is</em> the most used button on the Web, you know.</li>
+					<li>Head on back <a href="<?php bloginfo('url'); ?>">home</a>.</li>
+					<li>Try the navigation menu at the top &uarr; of the page.</li>
+					<li>Search or click on a link over in the sidebar.</li>
+					<li><a href="<?php bloginfo('rss2_url'); ?>">Subscribe to this site's feed</a> so you don't have to come here for updates.</li>
+					<li>Relive the glory days of high school football and punt, but <em>please</em> do not strain your groin.</li>
+				</ul>
+			</div>
+		</div>
+
+		<?php get_sidebar(); ?>
+		
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/archive.php b/wp-content/themes/copyblogger/archive.php
new file mode 100755
index 0000000000000000000000000000000000000000..415b6cbd9a1f8eb3b0a6424addea5f9dc43bc6ff
--- /dev/null
+++ b/wp-content/themes/copyblogger/archive.php
@@ -0,0 +1,48 @@
+<?php get_header(); ?>
+		
+	<div id="content_box">
+
+		<div id="content" class="archive">
+	
+		<?php if (have_posts()) : ?>
+
+			<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
+	
+			<?php /* If this is a category archive */ if (is_category()) { ?>				
+			<h1>Entries Tagged '<?php echo single_cat_title(); ?>' &darr;</h1>
+			
+			<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+			<h1>Entries from <?php the_time('F Y'); ?> &darr;</h1>
+
+			<?php } ?>
+
+			<?php while (have_posts()) : the_post(); ?>
+			
+			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
+			<p class="post_date"><?php the_time('F jS, Y') ?> &#8212; <?php the_category(', ') ?></p>
+			<div class="entry">
+				<?php the_content("Continue reading &rarr;"); ?>
+			</div>
+			<p class="post_meta"><span class="add_comment"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+					
+			<?php endwhile; ?>
+			
+			<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+
+		<?php else : ?>
+		
+			<h2>Welp, we couldn't find that...try again?</h2>
+			<p class="post_date">* * *</p>
+			<div class="entry">
+				<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+			</div>
+			
+		<?php endif; ?>
+			
+		</div>
+	
+		<?php get_sidebar(); ?>
+		
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/archives.php b/wp-content/themes/copyblogger/archives.php
new file mode 100755
index 0000000000000000000000000000000000000000..2db7845944f61e625094af6c27ea23006dc2e0d7
--- /dev/null
+++ b/wp-content/themes/copyblogger/archives.php
@@ -0,0 +1,31 @@
+<?php
+/*
+Template Name: Archives
+*/
+?>
+
+<?php get_header(); ?>
+		
+	<div id="content_box">
+
+		<div id="content" class="page">
+		
+			<h1>Browse the Archives...</h1>
+			<div class="entry">
+				<p><strong>Monthly archives:</strong><p>
+				<ul>
+					<?php wp_get_archives('type=monthly'); ?>
+				</ul>
+				<p><strong>Topical archives:</strong></p>
+				<ul>
+					<?php wp_list_categories('title_li=0'); ?>
+				</ul>
+			</div>
+			
+		</div>	
+		
+		<?php get_sidebar(); ?>
+			
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/comments.php b/wp-content/themes/copyblogger/comments.php
new file mode 100755
index 0000000000000000000000000000000000000000..3973e72f882163edb15f7367459cd0f7592e99b6
--- /dev/null
+++ b/wp-content/themes/copyblogger/comments.php
@@ -0,0 +1,120 @@
+<?php // Do not delete these lines
+	if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
+		die ('Please do not load this page directly. Thanks!');
+
+        if (!empty($post->post_password)) { // if there's a password
+            if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+	?>
+			
+		<p class="center"><?php _e("This post is password protected. Enter the password to view comments."); ?><p>
+				
+<?php	return; } }
+
+
+	/* Function for seperating comments from track- and pingbacks. */
+	function k2_comment_type_detection($commenttxt = 'Comment', $trackbacktxt = 'Trackback', $pingbacktxt = 'Pingback') {
+		global $comment;
+		if (preg_match('|trackback|', $comment->comment_type))
+			return $trackbacktxt;
+		elseif (preg_match('|pingback|', $comment->comment_type))
+			return $pingbacktxt;
+		else
+			return $commenttxt;
+	}
+
+	$templatedir = get_bloginfo('template_directory');
+	
+	$comment_number = 1;
+?>
+
+<!-- You can start editing here. -->
+
+<?php if (($comments) or ('open' == $post-> comment_status)) { ?>
+
+<div id="comments">
+
+	<h3 class="comment_intro"><?php comments_number('0 comments', '1 comment so far', '% comments' );?> &darr;</h3>
+
+	<?php if ($comments) { ?>
+
+	<dl id="comment_list">
+
+	<?php $count_pings = 1; foreach ($comments as $comment) { ?>
+		
+		<dt id="comment-<?php comment_ID() ?>"<?php if ($comment->comment_author_email == get_the_author_email()) { ?> class="author"<?php } ?>>
+			<span class="comment_num"><a href="#comment-<?php comment_ID() ?>" title="Permalink to this comment">#<?php echo($comment_number); ?></a></span>
+			<strong><?php comment_author_link() ?> </strong>on <?php comment_date('m.d.y') ?> at <?php comment_time() ?>
+		</dt>
+		<dd class="entry<?php if ($comment->comment_author_email == get_the_author_email()) { ?> author<?php } ?>">
+			<?php comment_text() ?> 
+			<?php if ($comment->comment_approved == '0') : ?>
+			<p><strong>Your comment is awaiting moderation.</strong></p>
+			<?php endif; ?>
+		</dd>
+		
+	<?php $comment_number++; } /* end for each comment */ ?>
+	
+	</dl>
+		
+	<?php } else { // this is displayed if there are no comments so far ?>
+
+		<?php if ('open' == $post-> comment_status) { ?> 
+		<!-- If comments are open, but there are no comments. -->
+		
+		<div class="entry">
+			<p>There are no comments yet...Kick things off by filling out the form below.</p>
+		</div>
+
+		<?php } else { // comments are closed ?>
+
+		<!-- If comments are closed. -->
+
+		<?php if (is_single) { // To hide comments entirely on Pages without comments ?>
+		<div class="entry">
+			<p>Like gas stations in rural Texas after 10 pm, comments are closed.</p>
+		</div>
+		<?php } ?>
+	
+		<?php } ?>
+
+	<?php } ?>
+
+	<!-- Comment Form -->
+	<?php if ('open' == $post-> comment_status) : ?>
+	
+		<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
+			<div class="entry">
+				<p class="log_in">You must <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">log in</a> to post a comment.</p>
+			</div>
+		<?php else : ?>
+
+			<h3 id="respond">Leave a Comment</h3>
+			<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="comment_form">
+			
+			<?php if ( $user_ID ) { ?>	
+				<p class="unstyled">Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout &raquo;</a></p>
+			<?php } ?>
+			<?php if ( !$user_ID ) { ?>
+				<p><input class="text_input" type="text" name="author" id="author" value="<?php echo $comment_author; ?>" tabindex="1" /><label for="author"><strong>Name</strong></label></p>
+				<p><input class="text_input" type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" tabindex="2" /><label for="email"><strong>Mail</strong></label></p>
+				<p><input class="text_input" type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" tabindex="3" /><label for="url"><strong>Website</strong></label></p>
+			<?php } ?>
+				<!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
+			
+				<p><textarea class="text_input text_area" name="comment" id="comment" rows="7" tabindex="4"></textarea></p>
+			
+				<?php if (function_exists('show_subscription_checkbox')) { show_subscription_checkbox(); } ?>
+			
+				<p>
+					<input name="submit" class="form_submit" type="submit" id="submit" tabindex="5" value="Submit" />
+					<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+				</p>
+		
+				<?php do_action('comment_form', $post->ID); ?>
+	
+			</form>
+		<?php endif; // If registration required and not logged in ?>
+
+<?php endif; // if you delete this the sky will fall on your head ?>
+</div> <!-- Close #comments container -->
+<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/custom.css b/wp-content/themes/copyblogger/custom.css
new file mode 100644
index 0000000000000000000000000000000000000000..c9726d2096d6db6f8687ca44fb12e72eaefb02b6
--- /dev/null
+++ b/wp-content/themes/copyblogger/custom.css
@@ -0,0 +1,170 @@
+/*---:[ custom styles for the Copyblogger theme that YOU define ]:---*/
+/*---:[ ------------------------------------------------------- ]:---*/
+
+/*---:[ to change the body background, the default font, and the default font color... ]:---*/
+/*---:[ NOTE: if you change the body background color, you will need to update your image files also ]:---*/
+/*---:[ Download the image template (.psd) with the Organic theme package at http://www.copyblogger.com/downloads/organic.zip ]:---*/
+
+body.custom { background: #fff; color: #222; font-family: Verdana, sans-serif; }
+
+/*---:[ uncomment the following lines only if you've uploaded updated image files to the a folder called "custom" within your copyblogger theme directory ]:---*/
+
+/* 
+.custom .add_comment { background: url('custom/icon_comment.gif') 0 50% no-repeat; }
+
+.custom #rss { background: url('custom/rss.gif') 50% 0 no-repeat; }
+
+.custom li.widget li, .custom li.linkcat li { background: url('custom/bullet.gif') 0 0.4167em no-repeat; }
+
+.custom dl#comment_list dt { background: url('custom/comment_top.gif') 0 100% no-repeat; }
+
+.custom dl#comment_list dt.author { background: url('custom/comment_author_top.gif') 0 100% no-repeat; }
+
+.custom dl#comment_list dd { background: #dfdfdf url('custom/comment_bottom.gif') 0 100% no-repeat; }
+
+.custom dl#comment_list dd.author { background: #f6f4c9 url('custom/comment_author_bottom.gif') 0 100% no-repeat; }
+*/
+
+
+/*---:[ to change the colors of the header and footer... ]:---*/
+
+.custom #header { background: #000; border-bottom-color: #a90000; color: #fff; }
+
+.custom #footer { background: #000; border-top-color: #a90000; color: #fff; }
+
+
+/*---:[ to change link colors and behaviors... ]:---*/
+
+.custom a { color: #a90000; }
+
+.custom a:visited { color: #777; }
+
+.custom a:hover { color: #a90000; }
+
+	/*---:[ site title (logo) in the header ]:---*/
+	
+	.custom #logo a { color: #fff; font-family: "American Typewriter", "Trebuchet MS", Verdana, sans-serif; }
+	
+	/*---:[ navigation links in the header ]:---*/
+
+	.custom #nav ul li a, .custom #nav ul li a:visited { color: #a90000; }
+
+	.custom #nav ul li a:hover, .custom #nav ul li a.current:hover { color: #fff !important; background: #a90000; } /* leave the !important declaration */
+
+	.custom #nav ul li a.current, .custom #nav ul li a.current:visited { color: #a90000; }
+
+	/*---:[ headline link colors on the main page, archive pages, and search pages ]:---*/
+
+	.custom h2 a, .custom h2 a:visited { color: #a90000; }
+
+	.custom h2 a:hover { color: #000; }
+	
+	/*---:[ category links located underneath headlines ]:---*/
+	
+	.custom .post_date a, .custom .post_date a:visited { color: #000; }
+	
+	.custom .post_date a:hover { color: #000; background: #ccc; }
+	
+	/*---:[ link behavior within posts ]:---*/
+	
+	.custom .entry a, .custom .entry a:visited { border-color: #bbb; }
+	
+	.custom .entry a:hover { color: #fff; background: #a90000; }
+	
+	/*---:[ link to comments that follows posts on the main page, archive pages, and search pages ]:---*/
+	
+	.custom .post_meta a:hover { color: #000; border-color: #a90000; }
+	
+	/*---:[ inter-post navigation (found at the bottom of main pages or at the top of single post pages) ]:---*/
+	
+	.custom .navigation a:hover { color: #000; border-color: #a90000; }
+	
+	/*---:[ sidebar link colors ]:---*/
+	
+	.custom li.widget li a:hover, .custom li.linkcat li a:hover { color: #000; border-color: #a90000; }
+	
+	/*---:[ calendar widget link colors ]:---*/
+	
+	.custom table#wp-calendar td a, .custom table#wp-calendar td a:visited { color: #a90000; }
+	
+	.custom table#wp-calendar td a:hover { color: #a90000; }
+	
+	/*---:[ comment permalink colors (precedes the commenter's name on each comment) ]:---*/
+	
+	.custom dl#comment_list dt .comment_num a, .custom dl#comment_list dt .comment_num a:visited { color: #999; }
+	
+	.custom dl#comment_list dt .comment_num a:hover { color: #a90000; }
+	
+	/*---:[ comment author's link colors ]:---*/
+	
+	.custom dl#comment_list dt strong a, .custom dl#comment_list dt strong a:visited { color: #000; border-color: #999; }
+	
+	.custom dl#comment_list dt strong a:hover { color: #000; border-color: #a90000; }
+	
+	/*---:[ footer link colors ]:---*/
+	
+	.custom #footer a, .custom #footer a:visited { color: #fff; border-color: #a90000; }
+
+	.custom #footer a:hover { color: #fff; border-color: #fff; }
+
+
+/*---:[ to change all of the gray double-borders in one fell swoop... ]:---*/
+
+.custom .page h1, .custom #sidebar h2, #comments h3.comment_intro, .custom .post_date, .custom .post_meta, .custom .page .entry { border-color: #ccc; }
+
+
+/*---:[ other stuff you may want to change... ]:---*/
+
+	/*---:[ headlines ]:---*/
+
+	.custom h1, .custom h2, .custom h3, .custom h4 { font-weight: bold; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
+
+	.custom h1, .custom h2 { color: #a90000; }
+	
+	.custom .archive h1 { color: #000; }
+	
+	.custom #sidebar h2 { color: #000; }
+
+	.custom h3, .custom h4 { color: #000; }
+
+	/*---:[ in-post stuff ]:---*/
+
+	.custom blockquote { font-family: Georgia, "Times New Roman", Times, serif; color: #555; border-color: #a90000; }
+
+	.custom blockquote.right, .custom blockquote.left { border-color: #ccc; } /* These are pullquotes */
+
+	.custom code { color: #090; font-family: Courier, "Courier New", monospace; }
+
+	.custom .post_date { color: #aaa; }
+
+	.custom img.frame { border-color: #ddd; }
+
+	/*---:[ calendar widget ]:---*/
+
+	.custom table#wp-calendar caption { border-color: #ccc; }
+
+	.custom table#wp-calendar th { color: #666; border-color: #ccc; }
+
+	.custom table#wp-calendar td { color: #999; }
+
+	/*---:[ comments ]:---*/
+
+	.custom dl#comment_list dt { color: #999; }
+
+		.custom dl#comment_list dt strong { color: #000; } /* Comment author's name */
+
+	/*---:[ comment form elements ]:---*/
+
+	.custom #comment_form .text_input { color: #a90000; font-family: Verdana, sans-serif; border-top-color: #999; border-left-color: #999; border-right-color: #eee; border-bottom-color: #eee; }
+
+	.custom #comment_form .text_input:focus { border-top-color: #666; border-left-color: #666; border-right-color: #ddd; border-bottom-color: #ddd; }
+	
+	.custom #comment_form .form_submit { color: #000; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } /* This is the submit button on the comment form */
+	
+	.custom #comment_form .form_submit:hover { color: #a90000; }
+	
+	/*---:[ search form ]:---*/
+	
+	.custom #search_form .search_input { color: #777; font-family: Verdana, sans-serif; border-color: #999; border-right-color: #eee; border-bottom-color: #eee; }
+	
+	.custom #search_form .search_input:focus { border-top-color: #666; border-left-color: #666; border-right-color: #ddd; border-bottom-color: #ddd; }
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/footer.php b/wp-content/themes/copyblogger/footer.php
new file mode 100755
index 0000000000000000000000000000000000000000..bbe8153b4d6b066ce1e17a03ead670742e3e60ad
--- /dev/null
+++ b/wp-content/themes/copyblogger/footer.php
@@ -0,0 +1 @@
+</div>

<div id="footer">
	<p>&copy; <?php bloginfo('name'); ?> &#8212; <a href="http://www.copyblogger.com">Copyblogger</a> theme design by <a href="http://pearsonified.com">Chris Pearson</a></p>
	<?php wp_footer(); ?>
</div>

</body>
</html>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/functions.php b/wp-content/themes/copyblogger/functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..b4727de0e79365c4a2bc52a1d40a85b5cff8930a
--- /dev/null
+++ b/wp-content/themes/copyblogger/functions.php
@@ -0,0 +1,4 @@
+<?php
+	if (function_exists('register_sidebar'))
+    register_sidebar();
+?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/header.php b/wp-content/themes/copyblogger/header.php
new file mode 100755
index 0000000000000000000000000000000000000000..2a9a4867a793637861ff83b74f126677b0a89d9f
--- /dev/null
+++ b/wp-content/themes/copyblogger/header.php
@@ -0,0 +1,42 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+<head profile="http://gmpg.org/xfn/11">
+	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
+
+	<title><?php if (is_home()) { bloginfo('description'); } else { wp_title('',true); } ?> &#8212; <?php bloginfo('name'); ?></title>
+
+	<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
+
+	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
+	<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/custom.css" type="text/css" media="screen" />
+	<!--[if lte IE 7]>
+	<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie7.css" />
+	<![endif]-->
+	<!--[if lte IE 6]>
+	<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie6.css" />
+	<![endif]-->
+	<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
+	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
+
+	<?php wp_head(); ?>
+</head>
+<body class="custom">
+
+<div id="header">
+	<div id="logo">
+		<a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
+		<?php if (is_home()) { ?>
+		<h1><?php bloginfo('description'); ?></h1>
+		<?php } else { ?>	
+		<p id="tagline"><?php bloginfo('description'); ?></p>
+		<?php } ?>
+	</div>
+</div>
+	
+<div id="container">
+	<div id="nav">
+		<ul>
+			<?php include (TEMPLATEPATH . '/nav_menu.php'); ?>
+		</ul>
+	</div>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/ie6.css b/wp-content/themes/copyblogger/ie6.css
new file mode 100644
index 0000000000000000000000000000000000000000..1248c7aa8b316df053ac4e5eda4aec2f5d691e94
--- /dev/null
+++ b/wp-content/themes/copyblogger/ie6.css
@@ -0,0 +1,3 @@
+/*---:[ ie6.css for the Copyblogger theme ]:---*/
+
+#content, #sidebar { overflow: hidden; }
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/ie7.css b/wp-content/themes/copyblogger/ie7.css
new file mode 100644
index 0000000000000000000000000000000000000000..3c11028b2635606973e945dba85a998900b1130f
--- /dev/null
+++ b/wp-content/themes/copyblogger/ie7.css
@@ -0,0 +1,11 @@
+/*---:[ ie7.css for the Copyblogger theme ]:---*/
+
+#content { padding: 0 5.9em 0 0; }
+
+h1, h2 { line-height: 1.43em; } /* IE 6 and 7 do not hold the grid properly without this fudged declaration */
+
+#rss { margin: 0 0 0.9em 0; }
+
+li.widget li { width: 15.5em; }
+
+dl#comment_list dt { width: 46.8em; }
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/images/bullet.gif b/wp-content/themes/copyblogger/images/bullet.gif
new file mode 100755
index 0000000000000000000000000000000000000000..26afb133169073fe80e22d213702f4e0b076bd35
Binary files /dev/null and b/wp-content/themes/copyblogger/images/bullet.gif differ
diff --git a/wp-content/themes/copyblogger/images/comment_author_bottom.gif b/wp-content/themes/copyblogger/images/comment_author_bottom.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ad1da6c9fa696f0c97fec28f35340c287606e63b
Binary files /dev/null and b/wp-content/themes/copyblogger/images/comment_author_bottom.gif differ
diff --git a/wp-content/themes/copyblogger/images/comment_author_top.gif b/wp-content/themes/copyblogger/images/comment_author_top.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1f01528e5ed3fe3be28488d642aad005b0e8abbd
Binary files /dev/null and b/wp-content/themes/copyblogger/images/comment_author_top.gif differ
diff --git a/wp-content/themes/copyblogger/images/comment_bottom.gif b/wp-content/themes/copyblogger/images/comment_bottom.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ea4c7e8dcb613b48f118ccbbb838f2fad1dae75c
Binary files /dev/null and b/wp-content/themes/copyblogger/images/comment_bottom.gif differ
diff --git a/wp-content/themes/copyblogger/images/comment_top.gif b/wp-content/themes/copyblogger/images/comment_top.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a713e94c73e52c87ea018e8bcd7e505006a8454e
Binary files /dev/null and b/wp-content/themes/copyblogger/images/comment_top.gif differ
diff --git a/wp-content/themes/copyblogger/images/icon_comment.gif b/wp-content/themes/copyblogger/images/icon_comment.gif
new file mode 100755
index 0000000000000000000000000000000000000000..eadd77dfc729543cd64270be156c62f71134ce4c
Binary files /dev/null and b/wp-content/themes/copyblogger/images/icon_comment.gif differ
diff --git a/wp-content/themes/copyblogger/images/rss.gif b/wp-content/themes/copyblogger/images/rss.gif
new file mode 100644
index 0000000000000000000000000000000000000000..62d5f97e81ef60a32c8d26cf95489e6fa9cb7aee
Binary files /dev/null and b/wp-content/themes/copyblogger/images/rss.gif differ
diff --git a/wp-content/themes/copyblogger/images/submit_bg.gif b/wp-content/themes/copyblogger/images/submit_bg.gif
new file mode 100755
index 0000000000000000000000000000000000000000..d116e4525e02095431e86a7c85204184beec96ec
Binary files /dev/null and b/wp-content/themes/copyblogger/images/submit_bg.gif differ
diff --git a/wp-content/themes/copyblogger/index.php b/wp-content/themes/copyblogger/index.php
new file mode 100755
index 0000000000000000000000000000000000000000..9d079fbdb08de54ca75c35875d7e2e2092451627
--- /dev/null
+++ b/wp-content/themes/copyblogger/index.php
@@ -0,0 +1,39 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="content">
+
+		<?php if (have_posts()) : ?>
+			
+			<?php while (have_posts()) : the_post(); ?>
+			
+			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
+			<p class="post_date"><?php the_time('F jS, Y') ?> &#8212; <?php the_category(', ') ?></p>
+			<div class="entry">
+				<?php the_content("Continue reading &rarr;"); ?>
+			</div>
+			<p class="post_meta"><span class="add_comment"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+			
+			<?php endwhile; ?>
+			
+			<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+			
+		<?php else : ?>
+	
+			<h2>If you're seeing this, it's time to go slap somebody.</h2>
+			<p class="post_date">* * *</p>
+			<div class="entry">
+				<p>Sorry, but you are looking for something that isn't here.</p>
+				<?php include (TEMPLATEPATH . "/searchform.php"); ?>
+			</div>
+	
+		<?php endif; ?>
+		
+		</div>
+
+		<?php get_sidebar(); ?>
+	
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/license.rtf b/wp-content/themes/copyblogger/license.rtf
new file mode 100644
index 0000000000000000000000000000000000000000..71fd19b9f19707a51a0a8314d5ad02219c4b78a5
--- /dev/null
+++ b/wp-content/themes/copyblogger/license.rtf
@@ -0,0 +1,73 @@
+{\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf410
+{\fonttbl\f0\fswiss\fcharset77 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\margl1440\margr1440\vieww9000\viewh8400\viewkind0
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural\pardirnatural
+
+\f0\fs24 \cf0 Attribution-ShareAlike 2.5\
+CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE.\
+\
+License\
+\
+THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\
+\
+BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.\
+\
+1. Definitions\
+\
+   1. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.\
+   2. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License.\
+   3. "Licensor" means the individual or entity that offers the Work under the terms of this License.\
+   4. "Original Author" means the individual or entity who created the Work.\
+   5. "Work" means the copyrightable work of authorship offered under the terms of this License.\
+   6. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.\
+   7. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike.\
+\
+2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.\
+\
+3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:\
+\
+   1. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;\
+   2. to create and reproduce Derivative Works;\
+   3. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;\
+   4. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.\
+   5.\
+\
+      For the avoidance of doubt, where the work is a musical composition:\
+         1. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.\
+         2. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).\
+   6. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).\
+\
+The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.\
+\
+4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:\
+\
+   1. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested.\
+   2. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.\
+   3. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.\
+\
+5. Representations, Warranties and Disclaimer\
+\
+UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\
+\
+6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\
+\
+7. Termination\
+\
+   1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.\
+   2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.\
+\
+8. Miscellaneous\
+\
+   1. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.\
+   2. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.\
+   3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.\
+   4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.\
+   5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.\
+\
+Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor.\
+\
+Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time.\
+\
+Creative Commons may be contacted at http://creativecommons.org/.\
+}
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/nav_menu.php b/wp-content/themes/copyblogger/nav_menu.php
new file mode 100644
index 0000000000000000000000000000000000000000..4793434f8dbeaed937e82aebcb93037fc62bbcbd
--- /dev/null
+++ b/wp-content/themes/copyblogger/nav_menu.php
@@ -0,0 +1,3 @@
+<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">home</a></li>
+<li><a <?php if (is_page('archives')) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>/archives/">archives</a></li>
+<li><a <?php if (is_page('about')) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>/about/">about</a></li>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/navigation.php b/wp-content/themes/copyblogger/navigation.php
new file mode 100755
index 0000000000000000000000000000000000000000..30e61e52439100a30819611e809798cbf97d2e52
--- /dev/null
+++ b/wp-content/themes/copyblogger/navigation.php
@@ -0,0 +1,15 @@
+<?php if (is_single()) : ?>
+
+<div class="navigation">
+	<p><?php previous_post_link('&larr; %link') ?></p>
+	<p class="next"><?php next_post_link('%link &rarr;') ?></p>
+</div>
+
+<?php else : ?>
+
+<div class="navigation">
+	<p><?php next_posts_link('&larr; Previous Entries') ?></p>
+	<p class="next"><?php previous_posts_link('Next Entries &rarr;') ?></p>
+</div>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/page.php b/wp-content/themes/copyblogger/page.php
new file mode 100755
index 0000000000000000000000000000000000000000..5bcff9f5f8bd3bdb1333156af958709520528a5d
--- /dev/null
+++ b/wp-content/themes/copyblogger/page.php
@@ -0,0 +1,23 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="content" class="page">
+
+			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+			<h1><?php the_title(); ?></h1>
+			<div class="entry">
+				<?php the_content('<p>Read the rest of this page &rarr;</p>'); ?>
+				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+			</div>
+			
+			<?php endwhile; endif; ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/page_comments.php b/wp-content/themes/copyblogger/page_comments.php
new file mode 100755
index 0000000000000000000000000000000000000000..3ace5d5831d0b917f2d2d83059529f562d5d1b77
--- /dev/null
+++ b/wp-content/themes/copyblogger/page_comments.php
@@ -0,0 +1,30 @@
+<?php
+/*
+Template Name: Page with Comments
+*/
+?>
+
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="content" class="page">
+
+			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+			<h1><?php the_title(); ?></h1>
+			<div class="entry">
+				<?php the_content('<p>Read the rest of this page &rarr;</p>'); ?>
+				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+			</div>
+			
+			<?php comments_template(); ?>
+			<?php endwhile; endif; ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/screenshot.png b/wp-content/themes/copyblogger/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..c7880edd9afbde204a43d70239c260dc24e241b4
Binary files /dev/null and b/wp-content/themes/copyblogger/screenshot.png differ
diff --git a/wp-content/themes/copyblogger/search.php b/wp-content/themes/copyblogger/search.php
new file mode 100755
index 0000000000000000000000000000000000000000..8a48e6f4bb7615e20efa5367b511c2d38ce8d949
--- /dev/null
+++ b/wp-content/themes/copyblogger/search.php
@@ -0,0 +1,40 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="content" class="archive">
+
+		<?php if (have_posts()) : ?>
+	
+			<h1>Search Results for '<?php echo $s; ?>' &darr;</h1>
+	
+			<?php while (have_posts()) : the_post(); ?>		
+			
+			<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
+			<p class="post_date"><?php the_time('F jS, Y') ?> &#8212; <?php the_category(', ') ?></p>
+			<div class="entry">
+				<?php the_content("Continue reading &rarr;"); ?>
+			</div>
+			<p class="post_meta"><span class="add_comment"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+					
+			<?php endwhile; ?>
+			
+			<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+		
+		<?php else : ?>
+	
+			<h2>Hmm, no results... try again?</h2>
+			<p class="post_date">* * *</p>
+			<div class="entry">
+				<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+			</div>
+		
+		<?php endif; ?>
+			
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/searchform.php b/wp-content/themes/copyblogger/searchform.php
new file mode 100755
index 0000000000000000000000000000000000000000..d21e356767bf7ce8650e17a78e88f3d5369885b3
--- /dev/null
+++ b/wp-content/themes/copyblogger/searchform.php
@@ -0,0 +1,4 @@
+<form method="get" id="search_form" action="<?php bloginfo('home'); ?>/">
+	<input type="text" class="search_input" value="To search, type and hit enter" name="s" id="s" onfocus="if (this.value == 'To search, type and hit enter') {this.value = '';}" onblur="if (this.value == '') {this.value = 'To search, type and hit enter';}" />
+	<input type="hidden" id="searchsubmit" value="Search" />
+</form>
diff --git a/wp-content/themes/copyblogger/sidebar.php b/wp-content/themes/copyblogger/sidebar.php
new file mode 100755
index 0000000000000000000000000000000000000000..c37e013e7bfc8e875742200ff3757c361d71720c
--- /dev/null
+++ b/wp-content/themes/copyblogger/sidebar.php
@@ -0,0 +1,27 @@
+<div id="sidebar">
+	<p id="rss"><a href="<?php bloginfo('rss2_url'); ?>" title="Subscribe to this site's feed"></a></p>
+	<ul class="sidebar_list">
+		<li class="widget">
+			<h2>Search</h2>
+			<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+		</li>
+		<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
+		<li class="widget">
+			<h2>Latest Blog Entries</h2>
+			<ul>
+				<?php query_posts('showposts=10'); ?>
+				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+				<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
+				<?php endwhile; endif; ?>
+			</ul>
+		</li>
+		<li class="widget">
+			<h2>Categories</h2>
+			<ul>
+				<?php wp_list_categories('title_li=0'); ?>
+			</ul>
+		</li>
+		<?php get_links_list('id'); ?>
+		<?php endif; ?>
+	</ul>
+</div>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/single.php b/wp-content/themes/copyblogger/single.php
new file mode 100755
index 0000000000000000000000000000000000000000..d2dfa874e09f387dae82e0baba1a9cfaa1cffe93
--- /dev/null
+++ b/wp-content/themes/copyblogger/single.php
@@ -0,0 +1,37 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+		
+		<div id="content" class="posts single">
+			
+		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+			<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+			
+			<h1><?php the_title(); ?></h1>
+			<p class="post_date"><?php the_time('F jS, Y') ?> | <?php the_category(', ') ?></p>
+			<div class="entry">
+				<?php the_content('<p>Read the rest of this entry &raquo;</p>'); ?>
+				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+			</div>
+			
+			<?php comments_template(); ?>
+			
+		<?php endwhile; else: ?>
+		
+			<h1>Uh oh.</h1>
+			<p class="post_date">You better <em>never</em> see this text.</p>
+			<div class="entry">
+				<p>Sorry, no posts matched your criteria. Wanna search instead?</p>
+				<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+			</div>
+			
+		<?php endif; ?>
+		
+		</div>
+		
+		<?php get_sidebar(); ?>
+			
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/sitemap.php b/wp-content/themes/copyblogger/sitemap.php
new file mode 100644
index 0000000000000000000000000000000000000000..16ab3a0a1107977e165f1f836376bcc86f0fe3fe
--- /dev/null
+++ b/wp-content/themes/copyblogger/sitemap.php
@@ -0,0 +1,53 @@
+<?php
+/*
+Template Name: Sitemap
+*/
+?>
+
+<?php get_header(); ?>
+		
+	<div id="content_box">
+
+		<div id="content" class="page">
+		
+			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+			<h1><?php the_title(); ?></h1>
+			<div class="entry">
+				<p><strong>All internal pages:</strong></p>
+				<ul>
+					<?php wp_list_pages('title_li='); ?>
+				</ul>
+				<p><strong>All internal blog posts:</strong></p>
+				<ul>
+					<?php $archive_query = new WP_Query('showposts=1000');
+						while ($archive_query->have_posts()) : $archive_query->the_post(); ?>
+					<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> <strong><?php comments_number('0', '1', '%'); ?></strong></li>
+					<?php endwhile; ?>
+				</ul>
+				<p><strong>Monthly archive pages:</strong></p>
+				<ul>
+					<?php wp_get_archives('type=monthly'); ?>
+				</ul>
+				<p><strong>Topical archive pages:</strong></p>
+				<ul>
+					<?php wp_list_categories('title_li=0'); ?>
+				</ul>
+				<p><strong>Available RSS Feeds:</strong></p>
+				<ul>
+					<li><a href="<?php bloginfo('rdf_url'); ?>" title="RDF/RSS 1.0 feed"><acronym title="Resource Description Framework">RDF</acronym>/<acronym title="Really Simple Syndication">RSS</acronym> 1.0 feed</a></li>
+					<li><a href="<?php bloginfo('rss_url'); ?>" title="RSS 0.92 feed"><acronym title="Really Simple Syndication">RSS</acronym> 0.92 feed</a></li>
+					<li><a href="<?php bloginfo('rss2_url'); ?>" title="RSS 2.0 feed"><acronym title="Really Simple Syndication">RSS</acronym> 2.0 feed</a></li>
+					<li><a href="<?php bloginfo('atom_url'); ?>" title="Atom feed">Atom feed</a></li>
+				</ul>
+			</div>
+				
+			<?php endwhile; endif; ?>
+			
+		</div>	
+		
+		<?php get_sidebar(); ?>
+			
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/copyblogger/style.css b/wp-content/themes/copyblogger/style.css
new file mode 100755
index 0000000000000000000000000000000000000000..fc135764cc2ce1bbaf45e1c6680bd449a3b99c0e
--- /dev/null
+++ b/wp-content/themes/copyblogger/style.css
@@ -0,0 +1,322 @@
+/*
+Theme Name:		Copyblogger
+Theme URI:		http://www.copyblogger.com
+Description:	The design that launched a thousand emails gets a ubiquitous hairdo. By <a href="http://pearsonified.com">Chris Pearson</a>.
+Version:		1.0
+Author:			Chris Pearson
+Author URI:		http://pearsonified.com/
+*/
+
+body { background: #fff; color: #222; font: 62.5% Verdana, sans-serif; }
+
+* { padding: 0; margin: 0; }
+
+
+
+/*---:[ global typography elements ]:---*/
+
+a { color: #a90000; text-decoration: none; }
+
+a:visited { color: #777; text-decoration: none; }
+
+a:hover { color: #a90000; text-decoration: none; }
+	
+a img { border: none; }
+	
+blockquote { margin: 0 0 1.5385em 1.5em; padding: 0 0 0 0.7692em; font-family: Georgia, "Times New Roman", Times, serif; color: #555; border-left: 0.2308em solid #a90000; }
+
+abbr, acronym { font-size: 0.8462em; line-height: 1.0em; border-bottom: 1px dotted #999; text-transform: uppercase; letter-spacing: 1px; cursor: help; }
+
+code { color: #090; font-family: Courier, "Courier New", monospace; line-height: 1.0em; }
+
+pre { margin: 0 0 1.5385em 0; padding: 0.7692em; font-size: 1.3em; overflow: auto; background: #ececec; }
+
+p.unstyled { font-size: 1.3em; }
+
+p.center { text-align: center; }
+
+/*---:[ these styles apply to the flickrRSS plugin, which is not yet fully supported ]:---*/
+
+.flickr_blue { color: #007ae4; text-transform: lowercase; }
+
+.flickr_pink { color: #ff2a96; text-transform: lowercase; }
+
+
+
+/*---:[ headlines ]:---*/
+
+h1, h2, h3, h4 { font: bold 1.0em "Helvetica Neue", Helvetica, Arial, sans-serif; }
+	
+h1, h2 { font-size: 2.8em; line-height: 1.4286em; letter-spacing: -1px; color: #a90000; }
+
+	h2 a, h2 a:visited { color: #a90000; }
+	
+	h2 a:hover { color: #000; }
+	
+	.page h1 { margin: 0 0 0.6071em 0; border-bottom: 0.10714em double #ccc; }
+	
+	.archive h1 { font-size: 2.4em; line-height: 1.66667em; margin: 0 0 1.66667em 0; color: #000; }
+	
+	#sidebar h2 { font-size: 1.5em; line-height: 1.5556em; margin: 0 0 0.5em 0; border-bottom: 0.166667em double #ccc; color: #000; }
+	
+h3 { font-size: 1.3846em; line-height: 1.1111em; color: #000; }
+
+	.entry h3 { margin: 1.6667em 0 0.5556em 0; }
+	
+	#comments h3 { font-size: 1.8em; }
+	
+	#comments h3.comment_intro { margin: 0 0 1.11111em 0; padding: 2.05556em 0 0 0; border-top: 0.166667em double #ccc; }
+
+	#comments h3#respond { margin: 2.2222em 0 0 0; }
+	
+h4 { font-size: 1.1538em; line-height: 1.3333em; color: #000; }
+
+
+
+/*---:[ core layout elements ]:---*/
+
+#header { background: #000; border-bottom: 0.8em solid #a90000; color: #fff; }
+
+#container { width: 72.8em; margin: 0 auto; }
+	
+	#content_box { width: 72.8em; }
+	
+		#content { width: 46.8em; padding: 0 6em 0 0; float: left; }
+		
+		#sidebar { width: 20em; float: left; }
+		
+#footer { padding: 1.5em 0; background: #000; border-top: 0.5em solid #a90000; color: #fff; }
+
+
+
+/*---:[ #header styles ]:---*/
+
+#logo { width: 72.8em; margin: 0 auto; }
+	
+	#logo a { font: normal 5.0em "American Typewriter", "Trebuchet MS", Verdana, sans-serif; color: #fff; }
+		
+	#logo h1, #logo #tagline { display: none; font: normal 1.6em "Helvetica Neue", Helvetica, Arial, sans-serif; }
+
+
+
+/*---:[ nav menu styles ]:---*/
+
+#nav { width: 72.8em; margin: 0 0 50px 0; }
+
+	#nav ul { list-style: none; }
+
+		#nav ul li { font-size: 1.6em; float: left; }
+	
+			#nav ul li a, #nav ul li a:visited { display: block; padding: 0.3125em 0.8125em 0.5em 0.8125em; color: #a90000; }
+	
+			#nav ul li a:hover, #nav ul li a.current:hover { color: #fff !important; background: #a90000; text-decoration: none !important; }
+		
+			#nav ul li a.current, #nav ul li a.current:visited { color: #a90000; text-decoration: underline; }
+
+
+
+/*---:[ content styles ]:---*/
+
+.post_date { font-size: 1.1em; line-height: 1.5455em; margin: 0 0 1.8182em 0; color: #aaa; border-bottom: 0.2727em double #ccc; }
+
+	.post_date a, .post_date a:visited { color: #000; padding: 0.0909em; }
+	
+	.post_date a:hover { color: #000; background: #ccc; }
+
+.entry { font-size: 1.3em; line-height: 1.5385em; }
+	
+	.entry a, .entry a:visited { padding: 1px 0; border-bottom: 1px solid #bbb; }
+	
+	.entry a:hover { padding: 1px 0; color: #fff; background: #a90000; border-bottom: none; }
+	
+	.entry p { margin: 0 0 1.5385em 0; }
+
+	.entry ul, .entry ol { margin: 0 0 1.5385em 3.0em; }
+	
+	.entry ul { list-style-type: disc; }
+	
+		.entry li { }
+		
+			.entry ul li ul, .entry ul li ol, .entry ol li ul, .entry ol li ol { margin: 0 0 0 1.5em; }
+	
+	.entry dl { margin: 0 0 1.5385em 0; }
+			
+		.entry dt { font-weight: bold; }
+		
+		.entry dd { margin: 0 0 0 1.5em; }
+		
+	.entry sup, .entry sub { line-height: 1.0em; }
+		
+	.entry blockquote.right, .entry blockquote.left { width: 13.6875em; padding: 0.4375em 0; font-size: 1.2308em; line-height: 1.25em; border: 0.0625em solid #ccc; border-width: 0.0625em 0; text-align: center; }
+	
+	.entry blockquote.right { margin: 0 0 0 0.9375em; float: right; clear: right; }
+	
+	.entry blockquote.left { margin: 0 0.9375em 0 0; float: left; clear: left; }
+
+		.entry blockquote.right p, .entry blockquote.left p { margin: 0 !important; }
+		
+	.entry .ad { margin: 0 0 0 1.1538em; float: right; clear: right; }
+	
+		.entry .ad_left { margin: 0 1.1538em 0 0; float: left; clear: left; }
+
+	.entry img { }
+
+	.entry img.left { margin: 0 1.1538em 0 0; float: left; clear: left; }
+	
+	.entry img.right { margin: 0 0 0 1.1538em; float: right; clear: right; }
+	
+	.entry img.center { display: block; margin: 0 auto 1.5385em auto; clear: both; }
+
+	.entry img.frame { border: 0.3846em solid #ddd; }
+	
+	.entry img.stack { clear: none !important; }
+
+.post_meta { margin: 0 0 4.5385em 0; padding: 0.3846em 0 0 0; border-top: 0.23077em double #ccc; font-size: 1.3em; line-height: 1.0em; clear: both; }
+	
+	.add_comment { padding: 0 0 0 1.6154em; background: url('images/icon_comment.gif') 0 50% no-repeat; font-weight: bold; }
+
+	.post_meta a:hover { color: #000; border-bottom: 1px solid #a90000; }
+
+.page .entry { margin: 0 0 3.0769em 0; border-bottom: 0.23077em double #ccc; }
+
+.navigation { width: 39em; margin: 0 0 3.3333em 0; font-size: 1.2em; line-height: 1.6667em; }
+	
+	.navigation a:hover { color: #000; border-bottom: 1px solid #a90000; }
+	
+	.next { text-align: right; }
+
+
+
+/*---:[ sidebar styles ]:---*/
+
+#rss { width: 20em; height: 70px; margin: 0 0 1.0em 0; background: url('images/rss.gif') 50% 0 no-repeat; text-align: center; }
+
+	#rss a { display: block; width: 48px; height: 48px; margin: 0 auto; }
+
+ul.sidebar_list { list-style: none; }
+
+	ul.sidebar_list li.widget, ul.sidebar_list li.linkcat { width: 16.6667em; margin: 0 0 2.5em 0; font-size: 1.2em; line-height: 1.6667em; float: left; }
+
+		li.widget p { margin: 0 0 1.66667em 0; }
+		
+		li.widget ul, li.linkcat ul { list-style: none; margin: 0 0 0.8333em 0; }
+		
+			li.widget li, li.linkcat li { padding: 0 0 0 1.16667em; background: url('images/bullet.gif') 0 0.4167em no-repeat; }
+					
+				li.widget li a:hover, li.linkcat li a:hover { color: #000; border-bottom: 1px solid #a90000; }
+				
+		/*---:[ special widget styles ]:---*/
+		
+		#calendar_wrap { width: 16.3333em; margin: 0 0 0.8333em 0; padding: 0 0.166667em; }
+		
+		table#wp-calendar { width: 16.3333em; border-collapse: collapse; }
+		
+			table#wp-calendar caption { font-weight: bold; line-height: 1.58333em; border-bottom: 0.08333em solid #ccc; }
+		
+			table#wp-calendar th { width: 2.3333em; font-size: 1.0em; line-height: 1.58333em; border-bottom: 0.08333em solid #ccc; color: #666; text-align: center; }
+			
+			table#wp-calendar td { width: 2.3333em; line-height: 1.66667em; color: #999; text-align: center; }
+			
+				table#wp-calendar td a, table#wp-calendar td a:visited { color: #a90000; font-weight: bold; }
+				
+				table#wp-calendar td a:hover { text-decoration: underline; }
+				
+			table#wp-calendar td#next, table#wp-calendar td#prev { width: 7.0em; }
+		
+		/*---:[ the following styles are for the flickrRSS plugin, which is not yet fully supported ]:---*/
+		
+		li.widget ul.flickr_stream { list-style: none; margin: 0; padding: 0 10px; }
+		
+			li.widget ul.flickr_stream li { margin: 0; padding: 0 5px 5px 0; display: inline; }
+			
+				li.widget ul.flickr_stream li a img { padding: 3px; }
+				
+				li.widget ul.flickr_stream li a:hover img { background: #ff2a96; border-bottom: none; }
+	
+
+
+/*---:[ footer styles ]:---*/
+
+#footer p { font-weight: bold; font-size: 1.0em; text-transform: uppercase; text-align: center; }
+
+#footer a, #footer a:visited { color: #fff; border-bottom: 1px solid #a90000; }
+
+#footer a:hover { color: #fff; border-bottom: 1px solid #fff; }
+
+
+
+/*---:[ comment styles ]:---*/
+
+#comments { width: 46.8em; }
+
+	dl#comment_list { margin: 0 0 0 0; }
+		
+		dl#comment_list dt { padding: 0 0 33px 0; background: url('images/comment_top.gif') 0 100% no-repeat; font-size: 1.1em; line-height: 1.8182em; color: #999; }
+		
+		dl#comment_list dt.author { background: url('images/comment_author_top.gif') 0 100% no-repeat; }
+		
+			dl#comment_list dt .comment_num { padding: 0 0.3636em 0 0; }
+			
+				dl#comment_list dt .comment_num a, dl#comment_list dt .comment_num a:visited { color: #999; }
+				
+				dl#comment_list dt .comment_num a:hover { color: #a90000; }
+				
+			dl#comment_list dt strong { font-size: 1.4545em; color: #000; }
+				
+				dl#comment_list dt strong a, dl#comment_list dt strong a:visited { color: #000; border-bottom: 1px dotted #999; }
+				
+				dl#comment_list dt strong a:hover { color: #000; border-bottom: 1px solid #a90000; }
+		
+		dl#comment_list dd { width: 428px; padding: 0 20px; margin: 0 0 1.5385em; background: #dfdfdf url('images/comment_bottom.gif') 0 100% no-repeat; }
+		
+		dl#comment_list dd.author { background: #f6f4c9 url('images/comment_author_bottom.gif') 0 100% no-repeat; }
+		
+			dl#comment_list dd.entry p, dl#comment_list dd.entry ul, dl#comment_list dd.entry ol, dl#comment_list dd.entry blockquote { margin-bottom: 1.1538em; }
+
+
+
+/*---:[ comment form styles ]:---*/
+
+p.log_in { margin: 0 0 3.07692em 0; }
+
+#comment_form { width: 46.8em; margin: 0 0 4.0em 0; }
+
+	#comment_form a:hover { text-decoration: underline; }
+
+	#comment_form p { padding: 0.7692em 0; }
+	
+		#comment_form label { padding: 0 0 0 0.83333em; font-size: 1.2em; }
+
+		#comment_form .text_input { width: 15.3846em; padding: 0.23077em; color: #a90000; font: bold 1.3em Verdana, sans-serif; border-top: 0.15385em solid #999; border-left: 0.15385em solid #999; border-right: 0.07692em solid #eee; border-bottom: 0.07692em solid #eee; }
+		
+		#comment_form .text_input:focus { border-top-color: #666; border-left-color: #666; border-right-color: #ddd; border-bottom-color: #ddd; }
+		
+		#comment_form .text_area { width: 32.9231em; }
+
+		#comment_form p.subscribe-to-comments { font-size: 1.3em; }
+		
+			#comment_form p.subscribe-to-comments label { font-size: 1.0em; }
+
+		#comment_form .form_submit { padding: 0.5em; background: url('images/submit_bg.gif') repeat-x; color: #000; border: 0.21429em double #999; border-top-color: #ccc; border-left-color: #ccc; font: bold 1.4em/1.0em "Helvetica Neue", Helvetica, Arial, sans-serif; cursor: pointer; }
+		
+		#comment_form .form_submit:hover { color: #a90000; }
+			
+			
+
+/*---:[ search form styles ]:---*/
+
+#search_form { margin: 0 0 0.5833em 0; }
+
+html[xmlns*=""] body:last-child #search_form { margin: 0 0 0.75em 0; } /* This is a hack for Safari */
+
+	#search_form .search_input { width: 15.91667em; padding: 0.25em; color: #777; font: normal 1.0em Verdana, Arial, Helvetica, sans-serif; border: 0.083333em solid #999; border-right-color: #eee; border-bottom-color: #eee; }
+	
+	#search_form .search_input:focus { border-top-color: #666; border-left-color: #666; border-right-color: #ddd; border-bottom-color: #ddd; }
+	
+	#content .search_input { font-size: 0.9231em !important; }
+		
+
+
+/*---:[ self-clearing floats courtesy of Dan Cederholm at simplebits.com ]:---*/
+
+#header:after, #logo:after, #nav:after, #content_box:after, .page .entry:after, #comments:after, dl#comment_list dd:after, #comment_form:after { display: block; height: 0; content: "."; visibility: hidden; clear: both; }
\ No newline at end of file