diff --git a/wp-content/themes/zenlite/404.php b/wp-content/themes/zenlite/404.php
index 79df0b94fd3b37bd99bf11d6de253abb4fb57892..553e73538bfd72a0b0c3c97cddc261b052757a18 100644
--- a/wp-content/themes/zenlite/404.php
+++ b/wp-content/themes/zenlite/404.php
@@ -1,12 +1,12 @@
-<?php ob_start(); ?>
-<?php header("HTTP/1.1 404 Not Found"); ?>
-<?php header("Status: 404 Not Found"); ?>
-<?php get_header(); ?>
+<?php ob_start();
+header("HTTP/1.1 404 Not Found");
+header("Status: 404 Not Found");
+get_header(); ?>
 
-<div id="content">
 <div <?php post_class('page'); ?>>
 <h2 class="post-title"><?php _e('Page Not Found', 'zenlite');?></h2>
 
+<div class="postcontent">
 <p><?php _e("Uh oh! I can't seem to find the file you asked for.", 'zenlite');?></p>
 
 <p><?php _e('Perhaps you:', 'zenlite');?></p>
@@ -17,9 +17,15 @@
 <li><?php _e('mis-typed something', 'zenlite');?></li>
 </ul>
 
-<p><?php _e("Try using the Search option to find what you're looking for.", 'zenlite');?></p>
+</div>
 
-<?php get_search_form();?>
+<?php
+if( is_active_sidebar( 'widget-404' ) ) :?><div class="widget-area"><?php endif;
+if (!dynamic_sidebar( 'widget-404' ) ) : ?>
+<p><?php _e("Try using the Search option to find what you're looking for.", 'zenlite');?></p>
+<?php get_search_form();
+endif;
+if( is_active_sidebar( 'widget-404' ) ) :?></div><?php endif;?>
 
 </div>
 
diff --git a/wp-content/themes/zenlite/archives.php b/wp-content/themes/zenlite/archives.php
index 5c93ccc482fff07b181d995932258431c5e30336..116d2467d46e3e9b905a610e198f5ed6108c936a 100644
--- a/wp-content/themes/zenlite/archives.php
+++ b/wp-content/themes/zenlite/archives.php
@@ -2,10 +2,8 @@
 /*
 Template Name: Archive Lists
 */
-?>
-<?php get_header(); ?>
 
-<div id="content">
+get_header(); ?>
 
 <h2><?php _e('Archives by Month:', 'zenlite');?></h2>
 <ul>
@@ -17,5 +15,4 @@ Template Name: Archive Lists
 <?php wp_list_categories(); ?>
 </ul>
 
-
-<?php get_footer(); ?>
\ No newline at end of file
+<?php get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/attachment.php b/wp-content/themes/zenlite/attachment.php
index 70d3a79fc9d5fe48c80e0a1753daa904b896e92f..4458637dd724d08c619baed77aae71eedb40e92b 100644
--- a/wp-content/themes/zenlite/attachment.php
+++ b/wp-content/themes/zenlite/attachment.php
@@ -1,24 +1,22 @@
-<?php get_header(); ?>
+<?php get_header();
 
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class(); ?>>
 
 <h2><?php the_title(); ?></h2>
 <ul class="meta">
-<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li>
+<li><?php edit_post_link(); ?></li>
 </ul>
 
 <div class="postcontent">
 
 <p class="download-link"><img class="download-icon alignleft" src="<?php echo wp_mime_type_icon(); ?>" width="46" height="60" alt="" /> <?php printf( __('Download the <a href="%1$s" rel="attachment">%2$s</a> file.', 'zenlite'),  wp_get_attachment_url(), get_the_title() );?><br />
 
-<?php printf( __('Published on %1$s at %2$s', 'zenlite' ), get_the_time(__('F j, Y', 'zenlite')), get_the_time() );
+<?php printf( __('Published on %1$s at %2$s', 'zenlite' ), get_the_time(get_option('date_format')), get_the_time(get_option('time_format')) );
 if( get_the_modified_time() != get_the_time() ) {
 	echo '<br />';
-	printf( __('Updated on %1$s at %2$s', 'zenlite' ), get_the_modified_time(__('F j, Y', 'zenlite')), get_the_modified_time() );
+	printf( __('Updated on %1$s at %2$s', 'zenlite' ), get_the_modified_time(get_option('date_format')), get_the_modified_time(get_option('time_format')) );
 }?></p>
 
 <?php if ( !empty( $post->post_excerpt ) ) :?>
@@ -39,5 +37,5 @@ if( get_the_modified_time() != get_the_time() ) {
 
 <?php endwhile; ?><?php endif; ?>
 </div>
- 
+
 <?php get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/author.php b/wp-content/themes/zenlite/author.php
index 0688f5113d7cf273d5a9f8058a10ea9ce92df306..ebe7d2b701731bfc8d11a3932cf78a3964e0e475 100644
--- a/wp-content/themes/zenlite/author.php
+++ b/wp-content/themes/zenlite/author.php
@@ -1,12 +1,11 @@
-<?php get_header(); ?>
+<?php get_header();
 
-<div id="content">
-
-<?php if(isset($_GET['author_name'])) $curauth = get_userdatabylogin($author_name);
+if(isset($_GET['author_name'])) $curauth = get_userdatabylogin($author_name);
 else $curauth = get_userdata(intval($author));?>
 
+<?php if( !is_paged() ) :?>
 <div <?php post_class(); ?>>
-<h2 class="post-title"><?php _e('About', 'zenlite');?> <?php echo $curauth->display_name; ?></h2>
+<h1 class="post-title"><?php _e('About', 'zenlite');?> <?php echo $curauth->display_name; ?></h1>
 <dl class="author-details">
 
 <?php if( $curauth->user_description !='' ) :?>
@@ -26,54 +25,21 @@ else $curauth = get_userdata(intval($author));?>
 <?php endif;?>
 
 <?php if( get_the_author_meta('aim', $curauth->ID) != '') :?>
-<dt class="aim"><abbr title="<?php _e('AOL Instant Messenger', 'zenlite');?>"><?php _e('AIM');?></abbr>:</dt>
+<dt class="aim"><?php printf( __('<abbr title="%1$s">%2$s</abbr>', 'zenlite') ,  __('AOL Instant Messenger', 'zenlite'), __('AIM', 'zenlite'));?>:</dt>
 <dd class="aim"><?php the_author_meta('aim', $curauth->ID);?></dd>
 <?php endif;?>
 
 <?php if( get_the_author_meta('yim', $curauth->ID) != '') :?>
-<dt class="yim"><?php _e('Yahoo');?> <abbr title="<?php _e('Instant Messenger', 'zenlite');?>"><?php _e('IM');?></abbr>:</dt>
+<dt class="yim"><?php printf( __('%1$s <abbr title="%2$s">%3$s</abbr>', 'zenlite') ,  __('Yahoo', 'zenlite'),  __('Instant Messenger', 'zenlite'), __('IM', 'zenlite'));?>:</dt>
 <dd class="yim"><?php the_author_meta('yim', $curauth->ID);?></dd>
 <?php endif;?>
 
 <?php endif;?>
-</dl>
-
-<h2 class="posts-by"><?php _e('Posts by', 'zenlite');?> <?php echo $curauth->display_name; ?>:</h2>
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
-
-<h3 class="post-title" id="post-<?php the_ID();?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Post', 'zenlite');?> <?php the_ID(); ?> - <?php _e('permanent link', 'zenlite');?>"><?php the_title(); ?></a></h3>
-<ul class="meta">
-<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li>
-<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) 
-); ?></li>
-</ul>
-
-<div class="postcontent">
-<?php if( has_post_thumbnail() ) {
-	the_post_thumbnail(); 
-	the_excerpt();
-}
-else the_content();?>
-</div>
-
-<ul class="meta postfoot">
-<li class="more-link"><a href="<?php the_permalink();?>"><?php _e('Continue reading ', 'zenlite') . the_title();?></a> &raquo;</li>
-<?php if('open' == $post->comment_status) : ?><li class="comment_link"><?php comments_popup_link(__('Comment on ', 'zenlite') .$post->post_title, __('1 Comment on ', 'zenlite') .$post->post_title, __('% Comments on ', 'zenlite') .$post->post_title,'postcomment',__('Comments are off for ', 'zenlite') .$post->post_title); ?> &raquo;</li><?php endif;?>
-<li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li>
-<?php if(get_the_tag_list()) :?>
-<li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li>
+</dl></div>
 <?php endif;?>
-</ul>
-
-<?php endwhile; ?>
 
-<ul class="prevnext">
-<li><?php next_posts_link(__('&laquo; Older Posts', 'zenlite') ); ?></li>
-<li><?php previous_posts_link(__('Newer Posts &raquo;', 'zenlite') );?></li>
-</ul>
+<h1 class="posts-by"><?php _e('Posts by', 'zenlite');?> <?php echo $curauth->display_name; ?></h1>
 
-<?php endif; ?>
-</div>
+<?php get_template_part( 'loop', 'index' );
 
-<?php get_footer(); ?>
\ No newline at end of file
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/authors.php b/wp-content/themes/zenlite/authors.php
index 72be2197855f58b1cb22aaa092de6c1c26280558..06725eb0903152625fa7a039833b60a759c22927 100644
--- a/wp-content/themes/zenlite/authors.php
+++ b/wp-content/themes/zenlite/authors.php
@@ -2,35 +2,13 @@
 /*
 Template Name: List Authors
 */
-?>
-<?php get_header(); ?>
 
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+get_header();
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class(); ?>>
-
-<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:', 'zenlite');?> <?php the_title(); ?>"><?php the_title(); ?></a></h2>
-<ul class="meta">
-<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li>
-</ul>
-
-<div class="postcontent">
-<?php the_content(); ?>
-</div>
-
-<ul class="authors">
-<?php wp_list_authors('exclude_admin=0&optioncount=1'); ?> 
-</ul>
-
-<?php wp_link_pages('before=<div class="pagelist">' . __('Pages:', 'zenlite')  .'&after=</div>&link_before=&link_after=&pagelink=%');?>
-
+<?php get_template_part('format', 'page');?>
 </div>
 
-<?php endwhile; ?>
-
-<?php  endif; ?>
-
-
-<?php get_footer(); ?>
\ No newline at end of file
+<?php endwhile; endif;
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/color.css b/wp-content/themes/zenlite/color.css
index ccd1e4f0ae0b029b68da58ff906db49546e27f3c..30074da8f1b03166438049a79a540412fc511a2d 100644
--- a/wp-content/themes/zenlite/color.css
+++ b/wp-content/themes/zenlite/color.css
@@ -6,26 +6,29 @@ http://quirm.net/
 body {
 	color:#606060;
 }
-h1,h2,h3,h4,h5,h6 {
-}
 blockquote {
-	border-left:2px solid #DEE2E9;;
+	background:url(images/quotes.png) no-repeat left top;
 }
 acronym, abbr {
 	border-bottom:1px dashed #ddd;
 }
-pre,ins {
-	background:#F3F3FB;
+ins {
+	background-color:#f3f3fb;
 	color:#606060;
 }
 pre {
-	border:1px solid #D5CDD5;
+	background: url(images/paper.png);
+	color:#606060;
+	border:1px solid #f3f3fb;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
 }
 fieldset {
-	background:#DEE2E9;
+	background:#dee2e9;
 }
 fieldset fieldset {
-	background:#F3F3FB;
+	background:#f3f3fb;
 }
 legend {
 	background:#B1B4BE;
@@ -36,33 +39,38 @@ input, textarea {
 	color:#404040;
 	border:1px solid #ddd;
 }
-input:focus,input.focus,textarea:focus,textarea.focus {
+input:focus,
+input.focus,
+textarea:focus,
+textarea.focus {
 	background:#fff;
 	color:#606060;
 	border-color:#407096;
 }
-input.submit,input.button,input[type=submit] {
+input.submit,
+input.button,
+input[type=submit] {
 	background:#505050;
 	color:#fff;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
 }
 input.checkbox {
 	border:none;
 }
-ins {
-	text-decoration:none;
-}
 table,th,td {
 	border:1px solid #C6CCD4;
 }
 th {
-	background:#DEE2E9;
+	background:#dee2e9;
 }
 tr {
 	background:#fff;
 	color:#606060;
 }
 tr.alt {
-	background:#F3F3FB;
+	background:#f3f3fb;
 }
 a {
 	 color:#407096;
@@ -73,17 +81,29 @@ a:visited {
 a:hover {
 	 color:#407096;
 }
-a:active,a:focus {
+a:active,
+a:focus {
 	background-color:#f93;
 	color:#000;
 }
 a img {
 	border:1px solid #fff;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+}
+a:hover img,
+a:active img,
+a:focus img {
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
 }
 a:hover img {
-	border-color:#DEE2E9;
+	border-color:#f8f8f8;
 }
-a:active img, a:focus img {
+a:active img, 
+a:focus img {
 	border-color:#f93;
 }
 
@@ -98,16 +118,18 @@ a:active img, a:focus img {
 }
 
 /* HEADER */
-#header h1,#header h1 a {
+#header h1,
+#header h1 a {
 	color:#606060;
 }
-#header h1 {
+#header {
 	border-bottom:3px double #aaa;
 }
 #header h1 a:hover {
 	 color:#407096;
 }
-#header h1 a:focus,#header h1 a:active {
+#header h1 a:focus,
+#header h1 a:active {
 	background-color:#f93;
 	color:#000;
 }
@@ -116,28 +138,40 @@ a:active img, a:focus img {
 }
 
 /* MENU */
-.sidebar {
+.navbar {
 	border-top:3px double #aaa;
 	border-bottom:3px double #aaa;
 }
-.sidebar a {
-	background:#fff;
+.navbar ul ul,
+.navbar ul li:hover,
+.navbar ul a:hover {
+	background:#dee2e9;
 	color:#606060;
 }
-.sidebar .current_page_item a,.sidebar .current-cat a,
-.sidebar .current-menu-item a {
+.navbar ul li.widget_tag_cloud:hover,
+.navbar .widget_tag_cloud a:hover {
+	background:transparent;
+}
+.navbar ul ul {
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.3);
+}
+.navbar ul a {
+	color:#606060;
+}
+.navbar .current_page_item > a,
+.navbar .current-cat > a,
+.navbar .current-menu-item > a {
 	background:#505050;
 	color:#fff;
 }
-.sidebar .current_page_item li a,.sidebar .current-cat li a {
-	background:#fff;
+.navbar ul ul a:hover {
+	background:#eaeef1;
 	color:#606060;
 }
-.sidebar a:hover {
-	background:#DEE2E9;
-	color:#404040;
-}
-.sidebar a:active,.sidebar a:focus {
+.navbar a:active,
+.navbar a:focus {
 	background:#f93;
 	color:#404040;
 }
@@ -147,11 +181,16 @@ a:active img, a:focus img {
 	 background:#fff;
 	 color:#606060;
 }
-.postfoot {
+#content .hentry,
+.search-results #content .hentry .hentry {
 	border-bottom:3px double #aaa;
 }
-.author .posts-by {
-	border-top:3px double #aaa;
+.single #content .hentry,
+.page #content .hentry {
+	border-bottom:none;
+}
+.sticky .post-title a {
+	background:url(images/star.png) no-repeat right center;
 }
 .single {
 	border:none;
@@ -165,71 +204,176 @@ a:active img, a:focus img {
 #content ul li ul li ul li {
 	list-style-image:none;
 }
-#content .prevnext li,#content .meta li {
+#content .prevnext li,
+#content .meta li {
 	list-style-image:none;
 	list-style:none;
 }
 
 /* no bullets */
-#content #commentlist li,#content .comment-links li,
-#content .result-list li,#content .page-tree ul li {
+#content #commentlist li,
+#content .comment-links li,
+#content .result-list li,
+#content .pagetree ul li,
+#content .widget-area {
 	list-style-image:none;
 	list-style:none;
 }
 
-/* pagination */
-.page-numbers a,.pagelist a {
-	background-color:#F3F3FB;
-	border:1px solid #DEE2E9;
+/* Post Formats */
+.format-audio a img,
+.format-gallery a img,
+.format-image a img,
+.format-status a img {
+	border:none;
+	-moz-box-shadow:0 0 0 rgba(0,0,0,0);
+	-webkit-box-shadow:0 0 0 rgba(0,0,0,0);
+	-box-shadow:0 0 0 rgba(0,0,0,0);
+}	
+.single .format-audio {
+	background:url(images/audio.png) no-repeat right top;
+}
+.format-link .post-title a {
+	background:url(images/link.png) no-repeat right top;
+}
+.format-video .more-link a {
+	background:url(images/video.png) no-repeat right top;
+}
+.format-quote .postcontent {
+	background:#f8fafd url(images/quotes.png) no-repeat left top;
+	border:4px solid #f8fafd;
+	-moz-border-radius:20px;
+	-webkit-border-radius:20px;
+	border-radius:20px;
+}
+.format-quote .postcontent .inner {
+	background:url(images/quotes2.png) no-repeat right bottom;
+}
+.format-quote .postcontent blockquote {
+	background-image:none;
+}
+.format-chat .postcontent {
+	background:url(images/paper.png);
+	border:1px solid #f3f3fb;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+}
+.single .format-image img {
+	border:10px solid #f3f3fb;
+	-moz-border-radius:3px;
+	-khtml-border-radius:3px;
+	-webkit-border-radius:3px;
+	border-radius:3px;
+}
+.single .format-image a:hover img {
+	border-color:#dee2e9;
 }
-.page-numbers a:hover,.pagelist a:hover {
-	background-color:#fff;
+.single .format-image a:active img,
+.single .format-image a:focus img {
+	border-color:#f93;
+}
+.format-gallery .more-link img,
+.format-image .more-link img {
+	border-width:5px;
+}
+
+/* pagination */
+.prevnext .next a,
+.prevnext .prev a {
+	background-repeat:no-repeat;
+}
+.prevnext .next a {
+	background-image:url(images/left.png);
+	background-position:left center;
+}
+.prevnext .prev a {
+	background-image:url(images/right.png);
+	background-position:right center;
+}
+.page-numbers a,
+.pagelist a {
+	background-color:#f3f3fb;
+	border:1px solid #dee2e9;
+}
+.page-numbers a:hover,
+.pagelist a:hover {
+	background-color:#505050;
+	color:#fff;
+	border-color:#505050;
 }
-.page-numbers a:active,.page-numbers a:focus,
-.pagelist a:active,.pagelist a:focus {
+.page-numbers a:active,
+.page-numbers a:focus,
+.pagelist a:active,
+.pagelist a:focus {
 	background-color:#f93;
 	color:#000;
 	border-color:#f93;
 }
 
 /* page tree */
-.page-tree {
-	background-color:#F3F3FB;
-	border:1px solid #DEE2E9;
+.pagetree {
+	background-color:#f8fafd;
+	border:1px solid #f0f4fb;
+	-moz-border-radius:10px;
+	-webkit-border-radius:10px;
+	border-radius:10px;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
 }
 
 /* COMMENTS */
+#comments {
+	border-top:3px double #aaa;
+}
 #commentlist .even {
-	background-color:#F3F3FB;
+	background-color:#f3f3fb;
 }
 #commentlist .odd {
 	background:#fff;
 }
-#commentlist .even,#commentlist .odd {
-	border:1px solid #DEE2E9;
+#commentlist .even,
+#commentlist .odd {
+	border:1px solid #dee2e9;
 	-moz-border-radius:3px;
 	-khtml-border-radius:3px;
 	-webkit-border-radius:3px;
 	border-radius:3px;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.1);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.1);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.1);
 }
-#commentlist li .meta li {
+#commentlist .bypostauthor > .comment-body cite {
+	background:url(images/author-comment.png) no-repeat;
+}
+#commentlist .comment-author-admin > .comment-body cite {
+	background:url(images/admin-comment.png) no-repeat;
+}
+#commentlist blockquote {
 	background:transparent;
-	border:none;
+}
+#commentlist .comment-author + em {
+	color:#900;
 }
 
 /* gallery & captions */
-.wp-caption img,#content .gallery img {
-	border:10px solid #F3F3FB;
+.wp-caption img,
+#content .gallery img {
+	border:10px solid #f3f3fb;
 	-moz-border-radius:3px;
 	-khtml-border-radius:3px;
 	-webkit-border-radius:3px;
 	border-radius:3px;
 }
-.wp-caption a:hover img,#content .gallery a:hover img {
-	border-color:#DEE2E9;
+.wp-caption a:hover img,
+#content .gallery a:hover img {
+	border-color:#dee2e9;
 }
-.wp-caption a:active img,.wp-caption a:focus img,
-#content .gallery a:active img,#content .gallery a:focus img {
+.wp-caption a:active img,
+.wp-caption a:focus img,
+#content .gallery a:active img,
+#content .gallery a:focus img {
 	border-color:#f93;
 }
 
@@ -241,10 +385,12 @@ a:active img, a:focus img {
 	background:#407096;
 	 color:#fff;
 }
-#wp-calendar tbody td a:active,#wp-calendar tbody td a:focus {
+#wp-calendar tbody td a:active,
+#wp-calendar tbody td a:focus {
 	background:#f93;
 	color:#000;
 }
-#wp-calendar #today,#wp-calendar #today a {
+#wp-calendar #today,
+#wp-calendar #today a {
 	background:#F5E6F5;
 }
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/comments.php b/wp-content/themes/zenlite/comments.php
index b4a5ce7ec6961a90aa6fcf2c9343475bdfd5492c..48e971b56710d340db69385960d69b33a0c2a408 100644
--- a/wp-content/themes/zenlite/comments.php
+++ b/wp-content/themes/zenlite/comments.php
@@ -1,31 +1,30 @@
-<?php 
-if ( post_password_required() ) : ?>
-<p class="comments-nopassword"><?php _e( "This post and it's comments are password protected. Enter the password into the form above to view any comments.", 'zenlite' ); ?></p>
+<?php
+if ( have_comments() && post_password_required() ) : ?>
+<p class="comments-nopassword"><?php _e( "This entry's comments are password protected. Enter the password into the form above to view the comments.", 'zenlite' ); ?></p>
 <?php
 // Stop the rest of comments.php from being processed,
 return;
 endif;
 ?>
 
-<?php if(have_comments()) : ?>
-<h2 id="comments" class="total-comments">
-<?php 
+<?php if( have_comments() ) : ?>
+<h2 id="comments"><?php
 $args = array(
 	'zero' => __('No comments', 'zenlite'),
 	'one' => __('1 Comment', 'zenlite'),
 	'more' => __('% Comments', 'zenlite')
 );
-comments_number($args ); ?> <?php _e('on', 'zenlite');?> <?php the_title(); ?></h2>
+comments_number($args ); ?><?php _e(' on ', 'zenlite');?><?php the_title(); ?></h2>
 <?php endif;?>
 
 <?php if ('open' == $post->comment_status) : ?>
 <ul class="comment-links">
 
-<?php if ('open' == $post->comment_status) : ?><li><a href="#respond"><?php _e('Add your comment', 'zen');?></a></li><?php endif;?>
+<?php if ('open' == $post->comment_status) : ?><li class="add-comment"><a href="#respond"><?php _e('Add your comment', 'zenlite');?></a></li><?php endif;?>
 
-<?php if (have_comments()) : ?><li><a href="<?php echo get_post_comments_feed_link();?>"><?php _e('Comments feed for this post', 'zenlite'); ?></a></li><?php endif;?>
+<?php if (have_comments()) : ?><li class="comments-feed-link"><a href="<?php echo get_post_comments_feed_link();?>"><?php _e('Comments feed for this post', 'zenlite'); ?></a></li><?php endif;?>
 
-<?php if(pings_open()) : ?><li><a href="<?php trackback_url();?>" rel="trackback"><?php _e('TrackBack', 'zenlite');?> <abbr title="<?php _e('Uniform Resource Identifier', 'zenlite');?>"><?php _e('URI', 'zenlite');?></abbr></a></li><?php endif;?>
+<?php if(pings_open()) : ?><li class="trackback-link"><a href="<?php trackback_url();?>" rel="trackback"><?php _e('TrackBack', 'zenlite');?> <abbr title="<?php _e('Uniform Resource Identifier', 'zenlite');?>"><?php _e('URI', 'zenlite');?></abbr></a></li><?php endif;?>
 
 </ul><?php endif; ?>
 
@@ -41,4 +40,4 @@ comments_number($args ); ?> <?php _e('on', 'zenlite');?> <?php the_title(); ?></
 
 <?php endif;
 
-comment_form( zenlite_comment_form_args($user_identity, $post->ID, $req) ); 
\ No newline at end of file
+comment_form( zenlite_comment_form_args($user_identity, $post->ID, $req) );
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/editor-style.css b/wp-content/themes/zenlite/editor-style.css
new file mode 100644
index 0000000000000000000000000000000000000000..fd2fed347ac161d3d33ea7a955ba11be48a82b30
--- /dev/null
+++ b/wp-content/themes/zenlite/editor-style.css
@@ -0,0 +1,276 @@
+/* ZenLite */
+
+/* LAYOUT */
+html .mceContentBody {
+	max-width:640px;
+}
+* {
+	font-family:Tahoma, Verdana,Arial, Helvetica, sans-serif;
+	line-height:1.5em;
+}
+h1 {
+	font-size:2.5em;
+	letter-spacing:0.2em;
+}
+h2 {
+	font-size:1.6em;
+}
+h3 {
+	font-size:1.4em;
+} 
+h4 {
+	font-size:1.2em;
+}
+h5,h6 {
+	font-size:1em;
+}
+h2,h3,h4,h5,h6 {
+	letter-spacing:.01em;
+}
+h1,h2,h3,h4 {
+	font-weight:normal;
+}
+a {
+	text-decoration:underline;
+}
+a:hover,a:active,a:focus {
+	text-decoration:none;
+}
+img {
+	border:none;
+}
+dt {
+	font-weight:bold;
+	margin-top:10px;
+}
+li {
+	margin-bottom:10px;
+}
+ol li {
+	list-style-type:decimal;
+}
+ol li ol li {
+	list-style-type: lower-alpha;
+}
+ol li ol li ol li {
+	list-style-type:lower-roman;
+}
+ul li {
+	list-style-type:disc;
+}
+ul li ul li {
+	list-style-type:circle;
+}
+ul li ul li ul li {
+	list-style-type: square;
+}
+small {
+	font-size:.8em;
+}
+acronym, abbr {
+	cursor:help;
+	letter-spacing:.01em;
+	text-decoration:none;
+}
+a acronym,a abbr {
+	text-decoration:none;
+	border-bottom:none;
+}
+blockquote {
+	min-height:60px;
+	margin:-5px 0 0;
+	padding:5px 0 0 60px;
+}
+blockquote cite {
+	display:block;
+	padding-bottom:15px;
+	font-size:.86em;
+	font-style:normal;
+}
+q {
+    font-style:italic;
+}
+q:before, q:after {
+    content:"";
+}
+ins {
+	padding:0 2px;
+	text-decoration:none;
+}
+pre,
+code,
+tt,
+kbd,
+var {
+	font-family:'courier new',courier, monospace;
+	font-size:1.05em;
+}
+pre {
+	overflow:auto;
+	white-space:pre;
+	padding:3px 5px;
+	line-height:20px;
+}
+address {
+	font-style:normal;
+}
+table {
+	border-collapse:collapse;
+}
+th,td {
+	padding:3px;
+}
+
+/* gallery */
+.gallery {
+	margin:20px auto;
+	padding:0;
+}
+.gallery .gallery-icon {
+	font-weight:normal;
+	margin:0;
+	padding:0;
+}
+.gallery .gallery-item {
+	float:left;
+	margin:0 0 20px;
+	padding:0;
+	text-align:center;
+	width:33%;
+}
+#content .gallery .gallery img {
+	float:none;
+	margin:0;
+	padding:0;
+}
+.gallery .gallery-caption {
+	margin:0;
+	padding:0;
+	text-align:center;
+	font-size:.9em;
+	line-height:1.2em;
+}
+
+/* images */
+.alignleft {
+	float:left;
+}
+.alignright {
+	float:right;
+}
+.aligncenter {
+	float:none;
+	display:block;
+}
+.alignnone {
+	float:none;
+}
+.alignleft,
+img.alignleft {
+	margin:0 20px 20px 0;
+}
+.alignright,
+img.alignright {
+	margin:0 0 20px 20px;
+}
+.aligncenter,
+img.aligncenter {
+	margin:10px auto;
+}
+
+/* captions */
+.wp-caption img {
+	margin:0 auto;
+	padding:0;
+}
+.wp-caption-text {
+	margin:0;
+	padding:0;
+	text-align:center;
+	font-size:.8em;
+}
+
+/* COLOURS */	
+* {
+	color:#606060;
+}
+blockquote {
+	background:url(images/quotes.png) no-repeat left top;
+}
+acronym, abbr {
+	border-bottom:1px dashed #ddd;
+}
+ins {
+	background-color:#f3f3fb;
+	color:#606060;
+}
+pre {
+	background: url(images/paper.png);
+	color:#606060;
+	border:1px solid #f3f3fb;
+	-moz-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-webkit-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+	-box-shadow:2px 2px 2px rgba(0,0,0,0.2);
+}
+table,th,td {
+	border:1px solid #C6CCD4;
+}
+th {
+	background:#dee2e9;
+}
+tr {
+	background:#fff;
+	color:#606060;
+}
+a {
+	 color:#407096;
+}
+a:visited {
+	color:#5F487E;
+}
+a:hover {
+	 color:#407096;
+}
+a:active,a:focus {
+	background-color:#f93;
+	color:#000;
+}
+a img {
+	border:1px solid #fff;
+}
+a:hover img {
+	border-color:#dee2e9;
+}
+a:active img, a:focus img {
+	border-color:#f93;
+}
+ul li {
+	list-style-image:url(images/bullet.jpg);
+}
+ul li ul li {
+	list-style-image:url(images/bullet2.jpg);
+}
+ul li ul li ul li {
+	list-style-image:none;
+}
+
+/* gallery & captions */
+.wp-caption img,
+.gallery img {
+	border:10px solid #f3f3fb;
+	-moz-border-radius:3px;
+	-khtml-border-radius:3px;
+	-webkit-border-radius:3px;
+	border-radius:3px;
+}
+.wp-caption a:hover img,
+.gallery a:hover img {
+	border-color:#dee2e9;
+}
+.wp-caption a:active img,
+.wp-caption a:focus img,
+.gallery a:active img,
+.gallery a:focus img {
+	border-color:#f93;
+}
+
diff --git a/wp-content/themes/zenlite/eshop.css b/wp-content/themes/zenlite/eshop.css
new file mode 100644
index 0000000000000000000000000000000000000000..d272d6043c84a4a8fe4e2230231d9875f71f650d
--- /dev/null
+++ b/wp-content/themes/zenlite/eshop.css
@@ -0,0 +1,3 @@
+#eshoptestmode {
+	display:none !important;
+}
diff --git a/wp-content/themes/zenlite/footer.php b/wp-content/themes/zenlite/footer.php
index a52ea8ee4fb83201ea21c44b34da44369e79581e..61164dcc1e59c58931432a3b019652541c315f71 100644
--- a/wp-content/themes/zenlite/footer.php
+++ b/wp-content/themes/zenlite/footer.php
@@ -3,15 +3,19 @@
 
 <div id="footer">
 
-<ul>
+<?php if( is_active_sidebar( 'widget-footer' ) ) :?><div class="widget-area"><?php endif;
+dynamic_sidebar( 'Footer' );
+if( is_active_sidebar( 'widget-footer' ) ) :?></div><?php endif;?>
+
+<ul class="site-links">
 <li class="top"><a href="#top" title="Jump to the top of this page">Top</a></li>
 <li class="loginout"><?php wp_loginout(); ?></li>
 <?php wp_register(); ?>
-<li class="rss"><a href="<?php bloginfo('rss2_url'); ?>" title="RSS Feed"><img src="<?php bloginfo('template_directory'); ?>/images/rss.png" width="14" height="14" alt="RSS" /></a></li>
+<li class="rss"><a href="<?php bloginfo('rss2_url'); ?>" title="RSS Feed"><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/rss.png" width="14" height="14" alt="RSS" /></a></li>
 </ul>
 
 <?php $zenlite_data = get_theme_data(get_stylesheet_directory() . '/style.css');?>
-<p><?php printf( __('Powered by the %1$s Theme %2$s', 'zenlite'), '<a href="' . $zenlite_data['URI'] . '">' . get_current_theme(), '</a>');?></p>
+<p class="credits"><?php printf( __('Powered by the %1$s Theme %2$s', 'zenlite'), '<a href="' . $zenlite_data['URI'] . '">' . get_current_theme(), '</a>');?></p>
 </div>
 
 <!-- end wrapper -->
diff --git a/wp-content/themes/zenlite/format-aside.php b/wp-content/themes/zenlite/format-aside.php
new file mode 100644
index 0000000000000000000000000000000000000000..691e9bf5e361c058a8d3612809c1ba9a4ad3bef3
--- /dev/null
+++ b/wp-content/themes/zenlite/format-aside.php
@@ -0,0 +1,43 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) ); ?></li>
+</ul>
+<?php endif;?>
+
+<div class="postcontent">
+<?php
+if( !is_single() ):
+if(has_post_thumbnail() ) : the_thumbnail();
+ else : ?><img class="wp-post-image" src="<?php echo get_stylesheet_directory_uri(); ?>/images/aside.png" width="100" height="100" alt="" />
+ <?php endif;?>
+<?php the_excerpt();
+else: the_content();
+endif;?>
+</div>
+
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><?php echo zenlite_author_display('', __(' @ ', 'zenlite') );?><?php if( !is_single() ):?><a href="<?php the_permalink();?>" title="<?php the_title_attribute( array('before' => 'Permalink to: ', 'after' => '') ); ?>"><?php endif;?><?php the_time(get_option('date_format')); ?> <?php the_time(get_option('time_format'));?><?php if( !is_single() ):?></a><?php endif;?></li><?php endif;?>
+
+<?php if( !is_single() ):?>
+<?php if( 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li><?php endif;?>
+
+<?php else :?><li><?php echo zenlite_author_display('', __(' @ ', 'zenlite') );?><?php the_time(get_option('date_format')); the_time(get_option('time_format'));?></li>
+<?php endif;?>
+
+<?php if(!is_category() && !is_search() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && !is_search() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+
+<?php comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-audio.php b/wp-content/themes/zenlite/format-audio.php
new file mode 100644
index 0000000000000000000000000000000000000000..d99a8dcb4ae05055b2fbfe5f4533fc242f4e036b
--- /dev/null
+++ b/wp-content/themes/zenlite/format-audio.php
@@ -0,0 +1,29 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(); ?></li>
+</ul>
+<?php endif;?>
+
+<?php if( is_single() ) : ?>
+<div class="postcontent">
+<?php if( is_search() ) the_excerpt();
+else the_content();?>
+</div>
+<?php endif;?>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><a href="<?php the_permalink();?>"  title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php if(has_post_thumbnail() ) : the_thumbnail(); else : ?><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/audio.png" width="100" height="100" alt="" /><?php endif;?> <?php printf( __('Listen to %1$s', 'zenlite'), get_the_title() );?></a></li><?php endif;?>
+
+<li><?php _e('Posted on ', 'zenlite'); the_time(get_option('date_format')); the_time(get_option('time_format')); echo zenlite_author_display(__(' by ', 'zenlite'), '')?></li>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-chat.php b/wp-content/themes/zenlite/format-chat.php
new file mode 100644
index 0000000000000000000000000000000000000000..93f5eb5722a8f2bd2be3b07dfbccdb24283c8c2e
--- /dev/null
+++ b/wp-content/themes/zenlite/format-chat.php
@@ -0,0 +1,50 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+<?php endif;?>
+
+<?php if( !is_search() ) :?>
+<div class="postcontent">
+<?php the_content('', false,'');?>
+</div>
+<?php endif;?>
+
+<?php  if( is_single() ) :
+$args = array(
+	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
+	'after' => '</div>',
+	'link_before' => '',
+	'link_after' => '',
+	'pagelink' => '%'
+);
+wp_link_pages($args);
+endif;?>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><a href="<?php the_permalink();?>#more-<?php echo $post->ID;?>"><?php _e('Continue reading ', 'zenlite');the_title();?></a></li><?php endif;?>
+
+<li class="added-by"><?php echo zenlite_author_display(__('Added by ', 'zenlite'), __( ' on ', 'zenlite'));the_time(get_option('date_format')); ?> <?php the_time(get_option('time_format'));?></li>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+</ul>
+
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-gallery.php b/wp-content/themes/zenlite/format-gallery.php
new file mode 100644
index 0000000000000000000000000000000000000000..7c633728e79fffdf94a544723547555dd97bfb2d
--- /dev/null
+++ b/wp-content/themes/zenlite/format-gallery.php
@@ -0,0 +1,42 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+<?php endif;?>
+
+<?php if( !is_single() && !is_search() ) : ?>
+<div class="more-link"><a href="<?php the_permalink();?>"  title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php if(has_post_thumbnail() ) : the_thumbnail(); else : ?><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/gallery.png" width="100" height="100" alt="" /><?php endif;?> <?php printf( __('View %1$s', 'zenlite'), get_the_title() );?></a></div>
+<?php else :?>
+<div class="postcontent">
+<?php if( !is_search() ) the_content();
+else the_excerpt();?>
+</div>
+<?php endif;?>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<li><?php _e('Published on ', 'zenlite'); the_time(get_option('date_format')); the_time(get_option('time_format')); echo zenlite_author_display(__(' by ', 'zenlite'), '')?></li>
+
+<?php if( get_the_modified_time() != get_the_time() ) :?><li><?php printf( __('Updated on %1$s %2$s', 'zenlite' ), get_the_modified_time(get_option('date_format')), get_the_modified_time(get_option('time_format')) );?></li><?php endif;?>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+</ul>
+
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-image.php b/wp-content/themes/zenlite/format-image.php
new file mode 100644
index 0000000000000000000000000000000000000000..29c6a64ccfa8f8d2eee9336a765b81a61352cb3c
--- /dev/null
+++ b/wp-content/themes/zenlite/format-image.php
@@ -0,0 +1,56 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+<?php endif;?>
+
+<?php if( !is_single() && !is_search() ) :?><div class="more-link"><a href="<?php the_permalink();?>"  title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php if(has_post_thumbnail() ) : the_post_thumbnail(); else : ?><img src="<?php echo get_stylesheet_directory_uri(); ?>/images/image.png" width="100" height="100" alt="" /><?php endif;?> <?php printf( __('View %1$s', 'zenlite'), get_the_title() );?></a></div>
+
+<?php else:?>
+<div class="postcontent">
+<?php if( !is_search() ) :
+$args = array(
+	'post_type' => 'attachment',
+	'post_mime_type' => 'image',
+	'numberposts' => -1,
+	'post_status' => null,
+	'post_parent' => $post->ID
+	);
+$images = get_posts($args);
+if( $images ) : foreach( $images as $image) :?>
+<div class="main-img"><a class="thickbox" title="<?php the_title(); ?> <?php  _e('(press ESC to close)','zenlite');?>" href="<?php echo wp_get_attachment_url($image->ID); ?>"><?php echo wp_get_attachment_image( $image->ID, 'large' ); ?></a></div>
+<?php endforeach;
+else: the_content();
+endif;
+else : the_excerpt();
+endif; ?>
+</div>
+
+<?php endif;?>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<li class="published-on"><?php _e('Published on ', 'zenlite'); the_time(get_option('date_format')); the_time(get_option('time_format')); echo zenlite_author_display(__(' by ', 'zenlite'), '')?></li>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-link.php b/wp-content/themes/zenlite/format-link.php
new file mode 100644
index 0000000000000000000000000000000000000000..f434316d3bc2d2f74da76ef82de5411d1c7dfaea
--- /dev/null
+++ b/wp-content/themes/zenlite/format-link.php
@@ -0,0 +1,49 @@
+<?php
+// Get the text & url from the first link in the content
+$content = get_the_content();
+$link_string = zenlite_extract_from_string('<a href=', '/a>', $content);
+$link_bits = explode('"', $link_string);
+foreach( $link_bits as $bit ) {
+	if( substr($bit, 0, 1) == '>') $link_text = substr($bit, 1, strlen($bit)-2);
+	if( substr($bit, 0, 4) == 'http') $link_url = $bit;
+}?>
+
+<h2 class="post-title"><a href="<?php echo $link_url;?>" title="<?php _e('External link', 'zenlite');?>"><?php echo $link_text;?></a></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+<?php endif;?>
+
+<?php if( is_single() ) :?>
+<div class="postcontent">
+<?php if( isset( $link_url ) ) : ?><p><a href="<?php echo $link_url;?>"><?php echo $link_url;?></a></p>
+<?php else: the_content();endif;?>
+</div>
+<?php endif;?>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<li><?php _e('Posted on ', 'zenlite'); the_time(get_option('date_format')); the_time(get_option('time_format')); echo zenlite_author_display(__(' by ', 'zenlite'), '')?></li>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-page.php b/wp-content/themes/zenlite/format-page.php
new file mode 100644
index 0000000000000000000000000000000000000000..fe4d07be9b97f285864e97a56dc64b65e9c2cc0a
--- /dev/null
+++ b/wp-content/themes/zenlite/format-page.php
@@ -0,0 +1,39 @@
+<?php if( !is_front_page() ):?>
+<h2 class="post-title"><?php if( !is_singular() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_singular() ) :?></a><?php endif;?></h2>
+<?php endif;?>
+
+<?php global $zenlite_options;
+if( (! isset ($zenlite_options['pagetree']) || $zenlite_options['pagetree'] != 'no' ) && zenlite_page_tree($post) != '' ) :?>
+<div class="pagetree">
+<h3><?php _e('Pages in this section', 'zenlite');?></h3>
+<ul><?php echo zenlite_page_tree($post);?></ul>
+</div>
+<?php endif;?>
+
+<div class="postcontent">
+<?php if( is_search() ) the_excerpt();
+else the_content();?>
+
+<?php
+$args = array(
+	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
+	'after' => '</div>',
+	'link_before' => '',
+	'link_after' => '',
+	'pagelink' => '%'
+);
+wp_link_pages($args);?>
+
+<?php if( is_page_template('authors.php' ) ) :?>
+<ul class="authors">
+<?php wp_list_authors('exclude_admin=0&optioncount=1'); ?>
+</ul>
+<?php endif;?>
+
+</div>
+
+<?php if( !is_page_template('page-without-comments.php' ) && !is_page_template('authors.php' ) && 'open' == $post->comment_status) : ?>
+<?php comments_template();?>
+<?php endif;
+
+if( is_page() ) edit_post_link( __('Edit this page', 'zenlite') );
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-quote.php b/wp-content/themes/zenlite/format-quote.php
new file mode 100644
index 0000000000000000000000000000000000000000..448e98d3ba4db69f422cbad242dee83f4d8d27d6
--- /dev/null
+++ b/wp-content/themes/zenlite/format-quote.php
@@ -0,0 +1,35 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+<?php endif;?>
+
+<div class="postcontent">
+<div class="inner"><?php the_content();?></div>
+</div>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<li class="added-by"><?php echo zenlite_author_display( __('Added by ', 'zenlite'), __(' on ', 'zenlite' ) );?><?php the_time(get_option('date_format')); ?> <?php the_time(get_option('time_format'));?></li>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+</ul>
+
+<?php endif;
+comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-standard.php b/wp-content/themes/zenlite/format-standard.php
new file mode 100644
index 0000000000000000000000000000000000000000..cd14c01a3baa5a1c28b5f8c3d2c128657a72d8e8
--- /dev/null
+++ b/wp-content/themes/zenlite/format-standard.php
@@ -0,0 +1,57 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li class="post-date"><?php the_time(get_option('date_format')); ?> <?php the_time(get_option('time_format'));?></li>
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) ); ?></li>
+</ul>
+<?php endif;?>
+
+<div class="postcontent">
+<?php if( !is_single() ) :
+	if( has_post_thumbnail() ) {
+		the_post_thumbnail();
+		the_excerpt();
+	}
+	elseif( post_password_required() || is_search()) the_excerpt();
+	else the_content('', false,'');
+else: the_content();
+endif; ?>
+
+<?php if( is_single() ) :
+$args = array(
+	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
+	'after' => '</div>',
+	'link_before' => '',
+	'link_after' => '',
+	'pagelink' => '%'
+);
+wp_link_pages($args);
+endif;?>
+
+</div>
+
+<?php if( !is_search() ) :?>
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><a href="<?php the_permalink();?>#more-<?php echo $post->ID;?>"><?php _e('Continue reading ', 'zenlite');the_title();?></a></li><?php endif;?>
+
+<?php if( zenlite_author_display( __('Author: ', 'zenlite'), '') ) :?>
+<li class="author-link"><?php echo zenlite_author_display( __('Author: ', 'zenlite'), '' );?></li><?php endif;?>
+
+<?php if( !is_single() && 'open' == $post->comment_status) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li>
+<?php endif;?>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+<?php endif;
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-status.php b/wp-content/themes/zenlite/format-status.php
new file mode 100644
index 0000000000000000000000000000000000000000..b6d5402535168ccd50a0ec7f6e665c03b3d05fe9
--- /dev/null
+++ b/wp-content/themes/zenlite/format-status.php
@@ -0,0 +1,43 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+
+<?php if( !is_search() ) :?>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) ); ?></li>
+</ul>
+<?php endif;?>
+
+<div class="postcontent">
+<?php
+if( !is_single() ):
+if(has_post_thumbnail() ) : the_thumbnail();
+ else : ?><img class="wp-post-image" src="<?php echo get_stylesheet_directory_uri(); ?>/images/status.png" width="100" height="100" alt="" />
+ <?php endif;?>
+<?php the_excerpt();
+else: the_content();
+endif;?>
+</div>
+
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><?php echo zenlite_author_display('', __(' @ ', 'zenlite') );?><?php if( !is_single() ):?><a href="<?php the_permalink();?>" title="<?php the_title_attribute( array('before' => 'Permalink to: ', 'after' => '') ); ?>"><?php endif;?><?php the_time(get_option('date_format')); ?> <?php the_time(get_option('time_format'));?><?php if( !is_single() ):?></a><?php endif;?></li><?php endif;?>
+
+<?php if( !is_single() ):?>
+<?php if( 'open' == $post->comment_status && !is_search() ) : ?>
+<li class="comment-link"><?php comments_popup_link(
+__('Comment on ', 'zenlite') . get_the_title($id),
+__('1 Comment on ', 'zenlite') . get_the_title($id),
+ __('% Comments on ', 'zenlite') . get_the_title($id),
+'postcomment',
+__('Comments are off for ', 'zenlite') . get_the_title($id)
+); ?> &raquo;</li><?php endif;?>
+
+<?php else :?><li><?php echo zenlite_author_display('', __(' @ ', 'zenlite') );?><?php the_time(get_option('date_format')); the_time(get_option('time_format'));?></li>
+<?php endif;?>
+
+<?php if(!is_category() && !is_search() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && !is_search() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+
+<?php comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/format-video.php b/wp-content/themes/zenlite/format-video.php
new file mode 100644
index 0000000000000000000000000000000000000000..4a56a0b82de65d5df9494f2a779a24b708cb9664
--- /dev/null
+++ b/wp-content/themes/zenlite/format-video.php
@@ -0,0 +1,25 @@
+<h2 class="post-title"><?php if( !is_single() ) :?><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php endif;?><?php the_title();?><?php if( !is_single() ) :?></a><?php endif;?></h2>
+<ul class="meta">
+<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() )
+); ?></li>
+</ul>
+
+<?php if( is_single() ) : ?>
+<div class="postcontent">
+<?php the_content();?>
+</div>
+<?php endif;?>
+
+<ul class="meta postfoot">
+
+<?php if( !is_single() ) :?><li class="more-link"><a href="<?php the_permalink();?>"  title="<?php the_title_attribute( array('before' => __('Permalink to ', 'zenlite'), 'after' => '') ); ?>"><?php printf( __('Watch %1$s', 'zenlite'), get_the_title() );?></a></li><?php endif;?>
+
+<li><?php _e('Posted on ', 'zenlite'); the_time(get_option('date_format')); the_time(get_option('time_format')); echo zenlite_author_display(__(' by ', 'zenlite'), '')?></li>
+
+<?php if(!is_category() && get_the_category() ) :?><li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li><?php endif;?>
+
+<?php if( !is_tag() && get_the_tag_list() ) :?><li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
+
+</ul>
+
+<?php comments_template();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/functions.php b/wp-content/themes/zenlite/functions.php
index 6d4f4244e38c5ea2c579b7abcabeb243e9dc00af..d565635f260ad4d601b050a611849797f8694c7e 100644
--- a/wp-content/themes/zenlite/functions.php
+++ b/wp-content/themes/zenlite/functions.php
@@ -2,39 +2,68 @@
 
 if ( ! function_exists( 'zenlite_setup' ) ):
 function zenlite_setup() {
-	
+
 	// Load language files
 	load_theme_textdomain( 'zenlite', TEMPLATEPATH . '/langs' );
 	$locale = get_locale();
 	$locale_file = TEMPLATEPATH . "/langs/$locale.php";
 	if ( is_readable( $locale_file ) ) require_once( $locale_file );
-	
+
 	// set content width
-	if ( ! isset( $content_width ) ) $content_width = 900;
-	
+	if ( ! isset( $content_width ) ) $content_width = 980;
+
 	// remove WP version number - security by obscurity
 	remove_action ('wp_head', 'wp_generator');
-	
+
 	// Add post thumbnail & feed link support
 	add_theme_support( 'post-thumbnails' );
 	add_theme_support( 'automatic-feed-links' );
+	add_theme_support( 'post-formats', array( 'aside', 'audio', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) );
+	add_image_size( 'post_format', 100, 100);
+
+	// Add editor style
+	add_editor_style();
 
 	// Get the post thumbnail dimensions from Settings/Media
 	define('THUMB_WIDTH', get_option('thumbnail_size_w'));
 	define('THUMB_HEIGHT', get_option('thumbnail_size_h'));
 	set_post_thumbnail_size( THUMB_WIDTH, THUMB_HEIGHT ); // box (proportional) resize mode
-	
+
 	// Add support for custom background
-	if( function_exists ('add_custom_background') ) add_custom_background();
+	add_custom_background();
 
 	// Header & Background customisation/
 	define('HEADER_IMAGE_WIDTH', apply_filters( 'zenlite_header_image_width',1000 ) );
 	define('HEADER_IMAGE_HEIGHT', apply_filters( 'zenlite_header_image_height', 150 ) );
-	define('HEADER_IMAGE', get_bloginfo('stylesheet_directory') . '/images/banner.jpg');
+	define('HEADER_IMAGE', get_stylesheet_directory_uri() . '/images/banner.jpg');
 	define('HEADER_TEXTCOLOR', apply_filters( 'zenlite_header_color', '606060' ) );
 	define ('BACKGROUND_COLOR', apply_filters( 'zenlite_background_color', 'fff' ) );
 	define ('BACKGROUND_IMAGE', apply_filters( 'zenlite_background_image', '' ) );
 
+	// Load banner selection images into UI
+	register_default_headers( array(
+		'one' => array(
+			'url' => get_stylesheet_directory_uri() . '/images/headers/header1.jpg',
+			'thumbnail_url' => get_stylesheet_directory_uri() . '/images/headers/header1-thumbnail.jpg',
+			'description' => __( 'Header 1', 'zenlite' )
+		),
+		'two' => array(
+			'url' => get_stylesheet_directory_uri() . '/images/headers/header2.jpg',
+			'thumbnail_url' => get_stylesheet_directory_uri() . '/images/headers/header2-thumbnail.jpg',
+			'description' => __( 'Header 2', 'zenlite' )
+		),
+		'three' => array(
+			'url' => get_stylesheet_directory_uri() . '/images/headers/header3.jpg',
+			'thumbnail_url' => get_stylesheet_directory_uri() . '/images/headers/header3-thumbnail.jpg',
+			'description' => __( 'Header 3', 'zenlite' )
+		),
+		'four' => array(
+			'url' => get_stylesheet_directory_uri() . '/images/headers/header4.jpg',
+			'thumbnail_url' => get_stylesheet_directory_uri() . '/images/headers/header4-thumbnail.jpg',
+			'description' => __( 'Header 4', 'zenlite' )
+		)
+	) );
+
 }
 endif;
 add_action( 'after_setup_theme', 'zenlite_setup' );
@@ -49,18 +78,47 @@ function zenlite_widgets_init() {
 	register_sidebar(array(
 		'name'=> __('Main menu', 'zenlite'),
 		'id' => 'main-menu',
-		'description' => __('Main menu','zenlite'),
-		'before_widget' => '<li id="%1$s" class="widget %2$s">',
-		'after_widget' => '</li>',
-		'before_title' => '<h2 class="widgettitle">',
+		'description' => __('Main horizontal menu. Recommended use: Pages or Categories.','zenlite'),
+		'before_widget' => '<div id="%1$s" class="top-menu widget %2$s">',
+		'after_widget' => '</div>',
+		'before_title' => '<h2 class="widgettitle offset">',
 		'after_title' => '</h2>',
 	));
+	register_sidebar(array(
+		'name'=> __('Footer', 'zenlite'),
+		'id' => 'widget-footer',
+		'description' => __('Displayed in the footer area of every page. Just about any widget will work here.','zenlite'),
+		'before_widget' => '<div id="%1$s" class="widget %2$s">',
+		'after_widget' => '</div>',
+		'before_title' => '<h3 class="widgettitle">',
+		'after_title' => '</h3>',
+	));
+	register_sidebar(array(
+		'name'=> __('404 Page', 'zenlite'),
+		'id' => 'widget-404',
+		'description' => __('Displayed in the Not Found  (404) Page only. Just about any widget will work here.','zenlite'),
+		'before_widget' => '<div id="%1$s" class="widget %2$s">',
+		'after_widget' => '</div>',
+		'before_title' => '<h3 class="widgettitle">',
+		'after_title' => '</h3>',
+	));
 }
 endif;
 add_action( 'widgets_init', 'zenlite_widgets_init' );
 
+// Hide header text
+if( !function_exists ('zenlite_hide_header_text') ) :
+function zenlite_hide_header_text() {
+	global $zenlite_options;
+	if( isset( $zenlite_options['header_text'] ) &&  $zenlite_options['header_text'] == 'no' ) echo '<style type = "text/css">
+	#header h1 {position:absolute;top:-9999px;left:-9999px;}
+	</style>';
+}
+endif;
+add_action( 'wp_head', 'zenlite_hide_header_text' );
+
 // add custom menu support
-if ( function_exists( 'register_nav_menu' ) && !function_exists( 'register_theme_menus' )) :
+if ( function_exists( 'register_nav_menu' ) && !function_exists( 'register_zenlite_menus' )) :
 function register_zenlite_menus() {
 	register_nav_menu( 'primary', __( 'Primary', 'zenlite' ) );
 }
@@ -70,13 +128,23 @@ add_action( 'init', 'register_zenlite_menus' );
 // Add thickbox to public-facing attachment pages only
 if ( !function_exists( 'zenlite_thickbox_init' ) ) :
 function zenlite_thickbox_init() {
-	if (is_attachment() ) {
-		add_thickbox();
-	}
+	if (is_attachment() || has_post_format('image') ) add_thickbox();
 }
 endif;
 add_action('template_redirect', 'zenlite_thickbox_init');
 
+if ( !function_exists( 'zenlite_thickbox_style' ) ) :
+function zenlite_thickbox_style() {
+	$css_file = get_stylesheet_directory() . '/thickbox.css';
+	$css_url = get_stylesheet_directory_uri() . '/thickbox.css';
+	if ( file_exists($css_file) && ( is_attachment() || has_post_format('image')) ) {
+		wp_register_style('zenlite-thickbox-style', $css_url, '', '', 'screen');
+		wp_enqueue_style('zenlite-thickbox-style');
+	}
+}
+endif;
+add_action('wp_print_styles', 'zenlite_thickbox_style');
+
 // Set up a proper &hellip;for post extracts
 if( !function_exists ('zenlite_proper_hellip') ) :
 function zenlite_proper_hellip($more) {
@@ -92,11 +160,11 @@ function zenlite_remove_gallery_css( $css ) {
 }
 endif;
 add_filter( 'gallery_style', 'zenlite_remove_gallery_css' );
-	
+
 // Correct image path issue in thickbox
 if( !function_exists ('zenlite_load_tb_fix') ) :
 function zenlite_load_tb_fix() {
-	if( is_attachment() ) ?><script type="text/javascript">tb_pathToImage = "'<?php bloginfo('url');?>/wp-includes/js/thickbox/loadingAnimation.gif";tb_closeImage = "<?php bloginfo('url');?>/wp-includes/js/thickbox/tb-close.png";</script>
+	if( is_attachment() ) ?><script type="text/javascript">tb_pathToImage = "'<?php echo home_url();?>/wp-includes/js/thickbox/loadingAnimation.gif";tb_closeImage = "<?php echo home_url();?>/wp-includes/js/thickbox/tb-close.png";</script>
 	<?php
 }
 endif;
@@ -120,22 +188,23 @@ add_filter('the_password_form','zenlite_password_form');
 if( !function_exists ('zenlite_password_excerpt') ) :
 function zenlite_password_excerpt($output) {
 	global $post;
-	if ( post_password_required($post) ) $output = '<p class="pwd-protected">' . __('This is a password protected post.', 'zenlite') . '</p>';
+	if ( post_password_required($post) ) $output = '<p class="pwd-protected">' . __('This is a password protected entry.', 'zenlite') . '</p>';
 	return $output;
 }
 endif;
 add_filter('the_excerpt','zenlite_password_excerpt');
 
-// Make sure we always have a visible post/page title
-if ( !function_exists( 'zenlite_correct_missing_title' ) ) :
-function zenlite_correct_missing_title( $title ) {
-	if ( $title == '' ) $title = __('No Title', 'zenlite');
+// Auto-generate post/page titles
+if ( !function_exists( 'zenlite_autogenerate_title' ) ) :
+function zenlite_autogenerate_title( $title ) {
+	global $zenlite_options;
+	if ( !$title && ( !isset($zenlite_options['notitle_display']) || $zenlite_options['notitle_display'] == 'yes' ) ) $title = __('No Title', 'zenlite');
 	return $title;
 }
 endif;
-add_filter( 'the_title', 'zenlite_correct_missing_title' );
+add_filter( 'the_title', 'zenlite_autogenerate_title' );
 
-// Disable home link in wp_page_menu
+// Enable home link in wp_page_menu
 if ( !function_exists( 'zenlite_show_home' ) ) :
 function zenlite_show_home( $args ) {
 	$args['show_home'] = true;
@@ -153,12 +222,31 @@ function zenlite_primary_menu_class( $args ) {
 endif;
 add_filter( 'wp_page_menu_args', 'zenlite_primary_menu_class' );
 
+// Extract first occurance of text from a string
+if( !function_exists ('zenlite_extract_from_string') ) :
+function zenlite_extract_from_string($start, $end, $tring) {
+	$tring = stristr($tring, $start);
+	$trimmed = stristr($tring, $end);
+	return substr($tring, strlen($start), -strlen($trimmed));
+}
+endif;
+
+// Construct an author posts link
+if( !function_exists ('zenlite_author_display') ) :
+function zenlite_author_display($before = '', $after = '') {
+	global $zenlite_options, $post;
+	$zenlite_author_string = '';
+	if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] == 'yes')  $zenlite_author_string = $before . '<a class="author" href="' . get_author_posts_url($post->post_author) . '">' . get_the_author() . '</a>' . $after;
+	return $zenlite_author_string;
+}
+endif;
+
 // Called in sidebar.php for Categories if no custom menu is defined
 if ( !function_exists( 'zenlite_callback_cats' ) ) :
 function zenlite_callback_cats() {
 	?>
 	<ul>
-	<li<?php if(is_front_page() || is_home()) echo ' class="current_page_item"';?>><a href="<?php bloginfo('url'); ?>"><?php _e('Home', 'zenlite');?></a></li>
+	<li<?php if(is_front_page() || is_home()) echo ' class="current_page_item"';?>><a href="<?php echo home_url(); ?>"><?php _e('Home', 'zenlite');?></a></li>
 	<?php wp_list_categories('title_li=');?>
 	</ul>
 	<?php
@@ -188,13 +276,15 @@ if ( ! function_exists( 'zenlite_comment_form_args' ) ) :
 function zenlite_comment_form_args($user_identity, $post_id, $req) {
 	global $zenlite_options;
 	$args = array(
-		'comment_notes_before' => '<p class="comment-notes"><label for="author">' . ( $req ? __( ' Required fields are marked ', 'zenlite') . '<span class="required">' . __('*', 'zenlite') . '</span><br />' : '' ) . __( 'Your email address will <em>never</em> be published or shared.' ) . '</label></p>',
+		'comment_notes_before' => '<p class="comment-notes"><label for="author">' . ( $req ? __( ' Required fields are marked ', 'zenlite') . '<span class="required">' . __('*', 'zenlite') . '</span><br />' : '' ) . __( 'Your details will be stored in a non-tracking cookie but your email address will <em>never</em> be published or shared.', 'zenlite' ) . '</label></p>',
+
+		'must_log_in' => '<p class="must-log-in">' .  sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment. If you choose to login - or register - on this site, a non-tracking cookie will be stored on your computer but your email address will <em>never</em> be published or shared.' , 'zenlite'), wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ) . '</p>',
+
+		'logged_in_as' => '<p class="logged-in-as"><label for="comment">' . sprintf( __( 'Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Log out?</a></label></p>', 'zenlite' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ),
 
-		'logged_in_as' => '<p class="logged-in-as"><label for="comment">' . sprintf( __( 'Logged in as <a href="%s">%s</a>. <a href="%s" title="Log out of this account">Log out?</a></label></p>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ) ) ) ),
+		'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _e( 'Comment', 'zenlite' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8"></textarea></p>',
+		'label_submit'=>__('Submit Reply', 'zenlite'),
 
-		'comment_field' => '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label><textarea id="comment" name="comment" cols="45" rows="8"></textarea></p>',
-		'label_submit'=>'Submit Reply',
-		
 		'comment_notes_after' => '<p class="form-allowed-tags"><label for="comment">' . __( 'You may use these <abbr title="eXtensible HyperText Markup Language">XHTML</abbr> tags and attributes:', 'zenlite' ) . ' <code>' .  allowed_tags() . '</code></label></p>'
 	);
 	if( $zenlite_options['kses_display'] && $zenlite_options['kses_display'] == 'no' ) $args['comment_notes_after'] = '';
@@ -245,7 +335,7 @@ function zenlite_admin_header_style() {
 	height:150px;
 	padding:0;
 	margin:70px 0 0;
-	background-image:url(images/banner.jpg);
+	background-image:url(<?php echo get_stylesheet_directory_uri(); ?>/images/banner.jpg);
 	background-repeat:no-repeat;
 	background-position:top left;
 	border-top:3px double #aaa;
@@ -282,4 +372,4 @@ function zenlite_admin_header_style() {
 <?php
 }
 endif;
-add_custom_image_header('', 'zenlite_admin_header_style');
+add_custom_image_header('zenlite_custom_header_style', 'zenlite_admin_header_style');
diff --git a/wp-content/themes/zenlite/header.php b/wp-content/themes/zenlite/header.php
index 3f849dbb5553cdacd409dffe1687066684162e05..5eb3cf8014a96770ca4a329f15d39a9535595a98 100644
--- a/wp-content/themes/zenlite/header.php
+++ b/wp-content/themes/zenlite/header.php
@@ -1,37 +1,36 @@
 <!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">
+<html <?php language_attributes(); ?> xmlns="http://www.w3.org/1999/xhtml">
 <head profile="http://gmpg.org/xfn/1">
 <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
 
 <meta name="designer" content="esmi@quirm.net" />
 
 <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />
-<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" media="print" />
+<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/print.css" media="print" />
 
 <!--[if IE]>
-<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/ie.css" media="screen" type="text/css" />
+<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/ie.css" media="screen" type="text/css" />
 <![endif]-->
 <!--[if lte IE 7]>
-<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/ie7.css" media="screen" type="text/css" />
-<script src="<?php bloginfo('template_directory'); ?>/library/focus.js" type="text/javascript"></script>
+<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/ie7.css" media="screen" type="text/css" />
+<script src="<?php get_template_directory_uri(); ?>/library/focus.js" type="text/javascript"></script>
 <![endif]-->
 
-<?php if ( function_exists( 'zenlite_custom_header_style' ) ) zenlite_custom_header_style();?>
-
 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
 
 <?php wp_get_archives('type=monthly&format=link'); ?>
 
-<title><?php if(is_search()) {
-	if(trim(get_search_query()) != '') {_e(' Search Results for &#39;', 'zenlite'); echo trim(get_search_query());_e('&#39; on ', 'zenlite');bloginfo('name');}
-	else {bloginfo('name');_e(' - No search query entered!', 'zenlite');}
+<title><?php bloginfo('name');
+if(is_search()) {
+	if(trim(get_search_query()) != '') printf( __(" - Search Results for '%1$s'", 'zenlite'), trim(get_search_query()) );
+	else {bloginfo('name'); _e(' - No search query entered!', 'zenlite');}
 }
-elseif (is_category() || is_author()) {wp_title(':',true,'right'); bloginfo('name');}
-elseif(is_tag()) {_e('Entries tagged with ', 'zenlite'); wp_title('',true);_e(' on '); bloginfo('name');}
-elseif(is_archive() ) {_e('Archives for ', 'zenlite');wp_title('',true,'right') ;_e(' on '); bloginfo('name');}
-elseif(is_404()) {bloginfo('name'); _e(' - Page not found!', 'zenlite');}
-elseif (have_posts()) {wp_title(':',true,'right'); bloginfo('name');}
-else {bloginfo('name');}?>
+elseif (is_category() || is_author()) wp_title('-',true);
+elseif(is_tag()) printf( __(' - Entries tagged with %1$s ', 'zenlite') , wp_title('', false) );
+elseif(is_archive() ) printf( __(' - Archives for %1$s ', 'zenlite') , wp_title('', false) );
+elseif(is_404())  _e(' - Page not found!', 'zenlite');
+elseif (have_posts()) wp_title('-',true);
+?>
 </title>
 
 <?php if(is_singular()) wp_enqueue_script( 'comment-reply' );?>
@@ -48,10 +47,13 @@ else {bloginfo('name');}?>
 </ul>
 
 <div id="header">
-<h1><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
+<h1><a href="<?php echo home_url( '/' ); ?>" title="<?php _e('Home', 'zenlite');?>"><?php bloginfo('name'); ?></a>
 <small><?php bloginfo('description'); ?></small></h1>
 </div>
 
 <div id="header-image"></div>
 
 <?php get_sidebar(); ?>
+
+<div id="content">
+
diff --git a/wp-content/themes/zenlite/image.php b/wp-content/themes/zenlite/image.php
index 8117efbdaa92b19e4e948f6dce2ec1d70d1011b1..3d1ecb6ba6a2148c68cc27467a82425b899dec1f 100644
--- a/wp-content/themes/zenlite/image.php
+++ b/wp-content/themes/zenlite/image.php
@@ -1,19 +1,17 @@
-<?php get_header(); ?>
+<?php get_header();
 
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class('img-attachment'); ?>>
 
 <h2><?php the_title(); ?></h2>
 <ul class="meta">
-<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li>
+<li><?php edit_post_link(); ?></li>
 </ul>
 
-<div class="main-img"><a class="thickbox" title="<?php the_title(); ?> <?php  _e('(press ESC to close)','zenlite');?>" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></div>
+<div class="main-img"><a class="thickbox" title="<?php the_title(); ?> <?php  _e('(press ESC to close)','zenlite');?>" href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'large' ); ?></a></div>
 
-<div class="postcontent">
+<div class="postcontent wp-caption-text">
 <?php the_excerpt(); ?>
 </div>
 
@@ -23,23 +21,21 @@ $args = array(
 	'post_mime_type' => 'image',
 	'numberposts' => -1,
 	'post_status' => null,
-	'post_parent' => $post->ID
-	); 
+	'post_parent' => $post->post_parent
+	);
 $images = get_posts($args);
-
-if( $images > 1 ) : ?>
+if( count($images) > 1 ) :?>
 <h3 class="more-images"><?php _e('More images posted under', 'zenlite');?> <a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></h3>
 <ul class="prevnext image-nav">
 <li class="prev_img"><?php previous_image_link(); ?></li>
 <li class="next_img"><?php next_image_link();?></li>
 </ul>
 
-<?php else :?>
+<?php else:?>
 <p class="posted-under"><?php _e('Posted under', 'zenlite');?> <a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a></p>
-
 <?php endif;?>
- </div>
 
-<?php endwhile; endif; ?>
+ </div>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php endwhile; endif;
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/images/admin-comment.png b/wp-content/themes/zenlite/images/admin-comment.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8f80ae8616a67e9ace6e43a6bf1a505c1f7e5b3
Binary files /dev/null and b/wp-content/themes/zenlite/images/admin-comment.png differ
diff --git a/wp-content/themes/zenlite/images/aside.png b/wp-content/themes/zenlite/images/aside.png
new file mode 100644
index 0000000000000000000000000000000000000000..52f21d4d8ae1722debce1a523467bf664099b1de
Binary files /dev/null and b/wp-content/themes/zenlite/images/aside.png differ
diff --git a/wp-content/themes/zenlite/images/audio.png b/wp-content/themes/zenlite/images/audio.png
new file mode 100644
index 0000000000000000000000000000000000000000..3248b1f05ff51a86275cf096c9692a95805a40ad
Binary files /dev/null and b/wp-content/themes/zenlite/images/audio.png differ
diff --git a/wp-content/themes/zenlite/images/author-comment.png b/wp-content/themes/zenlite/images/author-comment.png
new file mode 100644
index 0000000000000000000000000000000000000000..f3b655883e3f0193b233c97661fac38f18347fa4
Binary files /dev/null and b/wp-content/themes/zenlite/images/author-comment.png differ
diff --git a/wp-content/themes/zenlite/images/chat.png b/wp-content/themes/zenlite/images/chat.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e384e62fa1e6faad2e60870e13e34ba6213d093
Binary files /dev/null and b/wp-content/themes/zenlite/images/chat.png differ
diff --git a/wp-content/themes/zenlite/images/gallery.png b/wp-content/themes/zenlite/images/gallery.png
new file mode 100644
index 0000000000000000000000000000000000000000..633a71bbbcd2510633106fb704c027b9e15b5093
Binary files /dev/null and b/wp-content/themes/zenlite/images/gallery.png differ
diff --git a/wp-content/themes/zenlite/images/headers/header1-thumbnail.jpg b/wp-content/themes/zenlite/images/headers/header1-thumbnail.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..497daa8079739708069c0c679a8a12dcb916437a
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header1-thumbnail.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header1.jpg b/wp-content/themes/zenlite/images/headers/header1.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..7c69a633d153c0362ac8cef5999a33001386dc67
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header1.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header2-thumbnail.jpg b/wp-content/themes/zenlite/images/headers/header2-thumbnail.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..8fdee711b397bf7421000e685b0283b6731f1e11
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header2-thumbnail.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header2.jpg b/wp-content/themes/zenlite/images/headers/header2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b24d4b3795403bac53ca9a60e8af064791b59efd
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header2.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header3-thumbnail.jpg b/wp-content/themes/zenlite/images/headers/header3-thumbnail.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..796781b68b08837a9b4775a8045b8a8be402a4de
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header3-thumbnail.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header3.jpg b/wp-content/themes/zenlite/images/headers/header3.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..44f1ed850850a012ec4bc6bf2cf79333106bf028
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header3.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header4-thumbnail.jpg b/wp-content/themes/zenlite/images/headers/header4-thumbnail.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fcdc12620dd9e7ba219f1752db475de8c97f50e4
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header4-thumbnail.jpg differ
diff --git a/wp-content/themes/zenlite/images/headers/header4.jpg b/wp-content/themes/zenlite/images/headers/header4.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..ed15fc3706de1a66037b921f600f022c8b6f9fed
Binary files /dev/null and b/wp-content/themes/zenlite/images/headers/header4.jpg differ
diff --git a/wp-content/themes/zenlite/images/image.png b/wp-content/themes/zenlite/images/image.png
new file mode 100644
index 0000000000000000000000000000000000000000..6bbc6dc2c88c89146e6161b444fff56462a2d85a
Binary files /dev/null and b/wp-content/themes/zenlite/images/image.png differ
diff --git a/wp-content/themes/zenlite/images/left.png b/wp-content/themes/zenlite/images/left.png
new file mode 100644
index 0000000000000000000000000000000000000000..764fee98130d95c8ebea054d510ecd98c8c32745
Binary files /dev/null and b/wp-content/themes/zenlite/images/left.png differ
diff --git a/wp-content/themes/zenlite/images/link.png b/wp-content/themes/zenlite/images/link.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba94648f902a5353bb0ef7fa06b6f7d1b023c38b
Binary files /dev/null and b/wp-content/themes/zenlite/images/link.png differ
diff --git a/wp-content/themes/zenlite/images/paper.png b/wp-content/themes/zenlite/images/paper.png
new file mode 100644
index 0000000000000000000000000000000000000000..23df284f1a849c7a8f2c319f21bbbd77f73f2c55
Binary files /dev/null and b/wp-content/themes/zenlite/images/paper.png differ
diff --git a/wp-content/themes/zenlite/images/quotes.png b/wp-content/themes/zenlite/images/quotes.png
new file mode 100644
index 0000000000000000000000000000000000000000..ad5498fffc2aa1b0a3cd2acb9e4fec477ed194a5
Binary files /dev/null and b/wp-content/themes/zenlite/images/quotes.png differ
diff --git a/wp-content/themes/zenlite/images/quotes2.png b/wp-content/themes/zenlite/images/quotes2.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e8c74769e696b9082b7ee0aea29e9b89c02ffcd
Binary files /dev/null and b/wp-content/themes/zenlite/images/quotes2.png differ
diff --git a/wp-content/themes/zenlite/images/right.png b/wp-content/themes/zenlite/images/right.png
new file mode 100644
index 0000000000000000000000000000000000000000..59f2ededa8d19ad4e868a83eb6045c5701ae4bf4
Binary files /dev/null and b/wp-content/themes/zenlite/images/right.png differ
diff --git a/wp-content/themes/zenlite/images/star.png b/wp-content/themes/zenlite/images/star.png
new file mode 100644
index 0000000000000000000000000000000000000000..128238e52ae439f0d0bcc4eb22693dcbd69785f4
Binary files /dev/null and b/wp-content/themes/zenlite/images/star.png differ
diff --git a/wp-content/themes/zenlite/images/status.png b/wp-content/themes/zenlite/images/status.png
new file mode 100644
index 0000000000000000000000000000000000000000..36dc5a139f9a058b229a2b4501feae10539ca967
Binary files /dev/null and b/wp-content/themes/zenlite/images/status.png differ
diff --git a/wp-content/themes/zenlite/images/video.png b/wp-content/themes/zenlite/images/video.png
new file mode 100644
index 0000000000000000000000000000000000000000..4b9dd0dcbd2ce1f15df7799980faff3b37bacc20
Binary files /dev/null and b/wp-content/themes/zenlite/images/video.png differ
diff --git a/wp-content/themes/zenlite/index.php b/wp-content/themes/zenlite/index.php
index 682c47077cd3d8fb83dd87835b2fd0c454f0e4c1..3806fa2d5e71e4986cac9a252ea7ba0ea0522db9 100644
--- a/wp-content/themes/zenlite/index.php
+++ b/wp-content/themes/zenlite/index.php
@@ -1,6 +1,7 @@
 <?php
 get_header();
+global $zenlite_options;
 
 get_template_part( 'loop', 'index' );
 
-get_footer(); 
\ No newline at end of file
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/langs/zenlite.mo b/wp-content/themes/zenlite/langs/zenlite.mo
new file mode 100644
index 0000000000000000000000000000000000000000..1a8e1f3b8171f191a38ebf71c8120054d5d11f7a
Binary files /dev/null and b/wp-content/themes/zenlite/langs/zenlite.mo differ
diff --git a/wp-content/themes/zenlite/langs/zenlite.po b/wp-content/themes/zenlite/langs/zenlite.po
index a9ddd60a86ffb60ed999427360d48e37303822cc..43de058ccf518af5b26627731a40ae2ef1bc9583 100644
--- a/wp-content/themes/zenlite/langs/zenlite.po
+++ b/wp-content/themes/zenlite/langs/zenlite.po
@@ -2,18 +2,18 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ZenLite\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-06 22:53-0000\n"
-"PO-Revision-Date: 2010-09-06 22:53-0000\n"
+"POT-Creation-Date: 2011-09-14 21:59-0000\n"
+"PO-Revision-Date: 2011-09-14 21:59-0000\n"
 "Last-Translator: Mel P. <esmi@quirm.net>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
-"X-Poedit-Basepath: C:\\data\\data3\\server\\wordpress\\wp-content\\themes\\\n"
+"X-Poedit-Basepath: E:\\data\\data3\\server\\wordpress\\wp-content\\themes\\\n"
 "X-Poedit-SearchPath-0: zenlite\n"
 
-#: zenlite/404.php:8
+#: zenlite/404.php:7
 msgid "Page Not Found"
 msgstr ""
 
@@ -37,91 +37,84 @@ msgstr ""
 msgid "mis-typed something"
 msgstr ""
 
-#: zenlite/404.php:20
+#: zenlite/404.php:25
 msgid "Try using the Search option to find what you're looking for."
 msgstr ""
 
-#: zenlite/archives.php:10
+#: zenlite/archives.php:8
 msgid "Archives by Month:"
 msgstr ""
 
-#: zenlite/archives.php:15
+#: zenlite/archives.php:13
 msgid "Archives by Subject:"
 msgstr ""
 
-#: zenlite/attachment.php:11
-#: zenlite/authors.php:16
-#: zenlite/image.php:11
-#: zenlite/page-without-comments.php:16
-#: zenlite/page.php:11
-msgid "Edit"
-msgstr ""
-
-#: zenlite/attachment.php:16
+#: zenlite/attachment.php:14
 #, php-format
 msgid "Download the <a href=\"%1$s\" rel=\"attachment\">%2$s</a> file."
 msgstr ""
 
-#: zenlite/attachment.php:18
+#: zenlite/attachment.php:16
 #, php-format
 msgid "Published on %1$s at %2$s"
 msgstr ""
 
-#: zenlite/attachment.php:18
-#: zenlite/attachment.php:21
-#: zenlite/author.php:47
-#: zenlite/loop.php:11
-msgid "F j, Y"
-msgstr ""
-
-#: zenlite/attachment.php:21
+#: zenlite/attachment.php:19
 #, php-format
 msgid "Updated on %1$s at %2$s"
 msgstr ""
 
-#: zenlite/attachment.php:38
-#: zenlite/image.php:38
+#: zenlite/attachment.php:36
 msgid "Posted under"
 msgstr ""
 
-#: zenlite/attachment.php:38
+#: zenlite/attachment.php:36
 msgid "Return to parent page"
 msgstr ""
 
-#: zenlite/author.php:9
+#: zenlite/author.php:8
 msgid "About"
 msgstr ""
 
-#: zenlite/author.php:13
+#: zenlite/author.php:12
 msgid "Bio"
 msgstr ""
 
-#: zenlite/author.php:18
-#: zenlite/functions.php:238
+#: zenlite/author.php:17
 msgid "Website"
 msgstr ""
 
-#: zenlite/author.php:24
+#: zenlite/author.php:23
 msgid "Jabber / Google Talk"
 msgstr ""
 
-#: zenlite/author.php:29
+#: zenlite/author.php:28
+#, php-format
+msgid "<abbr title=\"%1$s\">%2$s</abbr>"
+msgstr ""
+
+#: zenlite/author.php:28
 msgid "AOL Instant Messenger"
 msgstr ""
 
-#: zenlite/author.php:29
+#: zenlite/author.php:28
 msgid "AIM"
 msgstr ""
 
-#: zenlite/author.php:34
+#: zenlite/author.php:33
+#, php-format
+msgid "%1$s <abbr title=\"%2$s\">%3$s</abbr>"
+msgstr ""
+
+#: zenlite/author.php:33
 msgid "Yahoo"
 msgstr ""
 
-#: zenlite/author.php:34
+#: zenlite/author.php:33
 msgid "Instant Messenger"
 msgstr ""
 
-#: zenlite/author.php:34
+#: zenlite/author.php:33
 msgid "IM"
 msgstr ""
 
@@ -129,270 +122,381 @@ msgstr ""
 msgid "Posts by"
 msgstr ""
 
-#: zenlite/author.php:45
-#: zenlite/loop.php:8
-msgid "Post"
+#: zenlite/comments.php:3
+msgid "This entry's comments are password protected. Enter the password into the form above to view the comments."
+msgstr ""
+
+#: zenlite/comments.php:13
+msgid "No comments"
+msgstr ""
+
+#: zenlite/comments.php:14
+msgid "1 Comment"
+msgstr ""
+
+#: zenlite/comments.php:15
+msgid "% Comments"
+msgstr ""
+
+#: zenlite/comments.php:17
+#: zenlite/format-chat.php:32
+msgid " on "
+msgstr ""
+
+#: zenlite/comments.php:23
+msgid "Add your comment"
+msgstr ""
+
+#: zenlite/comments.php:25
+msgid "Comments feed for this post"
+msgstr ""
+
+#: zenlite/comments.php:27
+msgid "TrackBack"
+msgstr ""
+
+#: zenlite/comments.php:27
+msgid "Uniform Resource Identifier"
 msgstr ""
 
-#: zenlite/author.php:45
-#: zenlite/loop.php:8
-msgid "permanent link"
+#: zenlite/comments.php:27
+msgid "URI"
+msgstr ""
+
+#: zenlite/footer.php:18
+#, php-format
+msgid "Powered by the %1$s Theme %2$s"
+msgstr ""
+
+#: zenlite/format-aside.php:1
+#: zenlite/format-audio.php:1
+#: zenlite/format-audio.php:19
+#: zenlite/format-chat.php:1
+#: zenlite/format-gallery.php:1
+#: zenlite/format-gallery.php:11
+#: zenlite/format-image.php:1
+#: zenlite/format-image.php:10
+#: zenlite/format-page.php:2
+msgid "Permalink to "
 msgstr ""
 
-#: zenlite/author.php:48
-#: zenlite/loop.php:12
+#: zenlite/format-aside.php:5
+#: zenlite/format-chat.php:5
+#: zenlite/format-gallery.php:5
+#: zenlite/format-image.php:5
+#: zenlite/format-link.php:15
 #, php-format
 msgid "Edit %1$s"
 msgstr ""
 
-#: zenlite/author.php:61
-#: zenlite/loop.php:27
-msgid "Continue reading "
+#: zenlite/format-aside.php:22
+#: zenlite/format-aside.php:34
+msgid " @ "
 msgstr ""
 
-#: zenlite/author.php:62
-#: zenlite/loop.php:31
+#: zenlite/format-aside.php:27
+#: zenlite/format-chat.php:36
+#: zenlite/format-gallery.php:28
+#: zenlite/format-image.php:41
+#: zenlite/format-link.php:34
 msgid "Comment on "
 msgstr ""
 
-#: zenlite/author.php:62
-#: zenlite/loop.php:32
+#: zenlite/format-aside.php:28
+#: zenlite/format-chat.php:37
+#: zenlite/format-gallery.php:29
+#: zenlite/format-image.php:42
+#: zenlite/format-link.php:35
 msgid "1 Comment on "
 msgstr ""
 
-#: zenlite/author.php:62
-#: zenlite/loop.php:33
+#: zenlite/format-aside.php:29
+#: zenlite/format-chat.php:38
+#: zenlite/format-gallery.php:30
+#: zenlite/format-image.php:43
+#: zenlite/format-link.php:36
 msgid "% Comments on "
 msgstr ""
 
-#: zenlite/author.php:62
-#: zenlite/loop.php:35
+#: zenlite/format-aside.php:31
+#: zenlite/format-chat.php:40
+#: zenlite/format-gallery.php:32
+#: zenlite/format-image.php:45
+#: zenlite/format-link.php:38
 msgid "Comments are off for "
 msgstr ""
 
-#: zenlite/author.php:63
-#: zenlite/loop.php:42
+#: zenlite/format-aside.php:37
+#: zenlite/format-audio.php:23
+#: zenlite/format-chat.php:44
+#: zenlite/format-gallery.php:36
+#: zenlite/format-image.php:49
+#: zenlite/format-link.php:42
 msgid "Filed under:"
 msgstr ""
 
-#: zenlite/author.php:65
-#: zenlite/loop.php:46
+#: zenlite/format-aside.php:39
+#: zenlite/format-audio.php:25
+#: zenlite/format-chat.php:46
+#: zenlite/format-gallery.php:38
+#: zenlite/format-image.php:51
+#: zenlite/format-link.php:44
 msgid "Tags:"
 msgstr ""
 
-#: zenlite/author.php:72
-#: zenlite/loop.php:56
-msgid "&laquo; Older Posts"
+#: zenlite/format-audio.php:19
+#, php-format
+msgid "Listen to %1$s"
 msgstr ""
 
-#: zenlite/author.php:73
-#: zenlite/loop.php:57
-msgid "Newer Posts &raquo;"
+#: zenlite/format-audio.php:21
+#: zenlite/format-link.php:30
+msgid "Posted on "
 msgstr ""
 
-#: zenlite/authors.php:14
-#: zenlite/page.php:9
-msgid "Permanent Link:"
+#: zenlite/format-audio.php:21
+#: zenlite/format-gallery.php:22
+#: zenlite/format-image.php:37
+#: zenlite/format-link.php:30
+msgid " by "
 msgstr ""
 
-#: zenlite/authors.php:27
-#: zenlite/page-without-comments.php:34
-#: zenlite/page.php:29
+#: zenlite/format-chat.php:18
+#: zenlite/format-page.php:19
 msgid "Pages:"
 msgstr ""
 
-#: zenlite/comments.php:3
-msgid "This post and it's comments are password protected. Enter the password into the form above to view any comments."
+#: zenlite/format-chat.php:30
+msgid "Continue reading "
 msgstr ""
 
-#: zenlite/comments.php:14
-msgid "No comments"
+#: zenlite/format-chat.php:32
+msgid "Added by "
 msgstr ""
 
-#: zenlite/comments.php:15
-msgid "1 Comment"
+#: zenlite/format-gallery.php:11
+#: zenlite/format-image.php:10
+#, php-format
+msgid "View %1$s"
 msgstr ""
 
-#: zenlite/comments.php:16
-msgid "% Comments"
+#: zenlite/format-gallery.php:22
+#: zenlite/format-image.php:37
+msgid "Published on "
 msgstr ""
 
-#: zenlite/comments.php:18
-msgid "on"
+#: zenlite/format-gallery.php:24
+#, php-format
+msgid "Updated on %1$s %2$s"
 msgstr ""
 
-#: zenlite/comments.php:24
-msgid "Add your comment"
+#: zenlite/format-image.php:24
+msgid "(press ESC to close)"
 msgstr ""
 
-#: zenlite/comments.php:26
-msgid "Comments feed for this post"
+#: zenlite/format-link.php:11
+msgid "External link"
 msgstr ""
 
-#: zenlite/comments.php:28
-msgid "TrackBack"
+#: zenlite/format-page.php:8
+msgid "Pages in this section"
 msgstr ""
 
-#: zenlite/comments.php:28
-msgid "Uniform Resource Identifier"
+#: zenlite/format-page.php:39
+msgid "Edit this page"
 msgstr ""
 
-#: zenlite/comments.php:28
-msgid "URI"
+#: zenlite/format-standard.php:39
+#: zenlite/format-standard.php:40
+msgid "Author: "
 msgstr ""
 
-#: zenlite/footer.php:14
+#: zenlite/format-video.php:15
 #, php-format
-msgid "Powered by the %1$s Theme %2$s"
+msgid "Watch %1$s"
 msgstr ""
 
-#: zenlite/functions.php:50
-#: zenlite/functions.php:52
+#: zenlite/functions.php:48
+msgid "Header 1"
+msgstr ""
+
+#: zenlite/functions.php:53
+msgid "Header 2"
+msgstr ""
+
+#: zenlite/functions.php:58
+msgid "Header 3"
+msgstr ""
+
+#: zenlite/functions.php:63
+msgid "Header 4"
+msgstr ""
+
+#: zenlite/functions.php:79
 msgid "Main menu"
 msgstr ""
 
-#: zenlite/functions.php:65
+#: zenlite/functions.php:81
+msgid "Main horizontal menu. Recommended use: Pages or Categories."
+msgstr ""
+
+#: zenlite/functions.php:88
+msgid "Footer"
+msgstr ""
+
+#: zenlite/functions.php:90
+msgid "Displayed in the footer area of every page. Just about any widget will work here."
+msgstr ""
+
+#: zenlite/functions.php:97
+msgid "404 Page"
+msgstr ""
+
+#: zenlite/functions.php:99
+msgid "Displayed in the Not Found  (404) Page only. Just about any widget will work here."
+msgstr ""
+
+#: zenlite/functions.php:123
 msgid "Primary"
 msgstr ""
 
-#: zenlite/functions.php:169
+#: zenlite/functions.php:179
 msgid "This post is password protected. To view it, please enter your password below:"
 msgstr ""
 
-#: zenlite/functions.php:171
+#: zenlite/functions.php:181
 msgid "Password:"
 msgstr ""
 
-#: zenlite/functions.php:182
-msgid "This is a password protected post."
+#: zenlite/functions.php:191
+msgid "This is a password protected entry."
 msgstr ""
 
-#: zenlite/functions.php:191
+#: zenlite/functions.php:201
 msgid "No Title"
 msgstr ""
 
-#: zenlite/functions.php:220
+#: zenlite/functions.php:249
+#: zenlite/header.php:50
 msgid "Home"
 msgstr ""
 
-#: zenlite/functions.php:232
-#: zenlite/functions.php:250
+#: zenlite/functions.php:261
+#: zenlite/functions.php:279
 msgid "*"
 msgstr ""
 
-#: zenlite/functions.php:234
+#: zenlite/functions.php:263
 msgid "Name"
 msgstr ""
 
-#: zenlite/functions.php:236
+#: zenlite/functions.php:265
 msgid "Email"
 msgstr ""
 
-#: zenlite/functions.php:250
+#: zenlite/functions.php:279
 msgid " Required fields are marked "
 msgstr ""
 
-#: zenlite/functions.php:250
-msgid "Your email address will <em>never</em> be published or shared."
+#: zenlite/functions.php:279
+msgid "Your details will be stored in a non-tracking cookie but your email address will <em>never</em> be published or shared."
 msgstr ""
 
-#: zenlite/functions.php:252
+#: zenlite/functions.php:281
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment. If you choose to login - or register - on this site, a non-tracking cookie will be stored on your computer but your email address will <em>never</em> be published or shared."
+msgstr ""
+
+#: zenlite/functions.php:283
 #, php-format
 msgid "Logged in as <a href=\"%s\">%s</a>. <a href=\"%s\" title=\"Log out of this account\">Log out?</a></label></p>"
 msgstr ""
 
-#: zenlite/functions.php:257
-msgid "You may use these <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr> tags and attributes:"
+#: zenlite/functions.php:285
+msgid "Comment"
 msgstr ""
 
-#: zenlite/header.php:26
-msgid " Search Results for &#39;"
+#: zenlite/functions.php:286
+msgid "Submit Reply"
 msgstr ""
 
-#: zenlite/header.php:26
-msgid "&#39; on "
+#: zenlite/functions.php:288
+msgid "You may use these <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr> tags and attributes:"
 msgstr ""
 
-#: zenlite/header.php:27
+#: zenlite/header.php:26
 msgid " - No search query entered!"
 msgstr ""
 
-#: zenlite/header.php:30
-msgid "Entries tagged with "
+#: zenlite/header.php:29
+#, php-format
+msgid " - Entries tagged with %1$s "
 msgstr ""
 
 #: zenlite/header.php:30
-#: zenlite/header.php:31
-msgid " on "
+#, php-format
+msgid " - Archives for %1$s "
 msgstr ""
 
 #: zenlite/header.php:31
-msgid "Archives for "
-msgstr ""
-
-#: zenlite/header.php:32
 msgid " - Page not found!"
 msgstr ""
 
-#: zenlite/header.php:46
+#: zenlite/header.php:45
 msgid "Jump to Main Content"
 msgstr ""
 
-#: zenlite/header.php:47
+#: zenlite/header.php:46
 msgid "Jump to Footer"
 msgstr ""
 
-#: zenlite/image.php:14
-msgid "(press ESC to close)"
-msgstr ""
-
-#: zenlite/image.php:31
+#: zenlite/image.php:28
 msgid "More images posted under"
 msgstr ""
 
-#: zenlite/loop.php:39
-msgid "Author:"
-msgstr ""
-
-#: zenlite/page-without-comments.php:14
-msgid "Permanent Link"
+#: zenlite/loop.php:3
+#: zenlite/loop.php:21
+#: zenlite/search.php:33
+msgid "Older Posts"
 msgstr ""
 
-#: zenlite/page-without-comments.php:21
-#: zenlite/page.php:16
-msgid "Pages in this section"
+#: zenlite/loop.php:4
+#: zenlite/loop.php:22
+#: zenlite/search.php:34
+msgid "Newer Posts"
 msgstr ""
 
-#: zenlite/search.php:6
+#: zenlite/search.php:4
 msgid "Search Results"
 msgstr ""
 
-#: zenlite/search.php:12
+#: zenlite/search.php:10
 msgid " page"
 msgstr ""
 
-#: zenlite/search.php:13
+#: zenlite/search.php:11
 msgid " pages"
 msgstr ""
 
-#: zenlite/search.php:17
+#: zenlite/search.php:15
 msgid "You searched for"
 msgstr ""
 
-#: zenlite/search.php:20
+#: zenlite/search.php:18
 msgid "Displaying page"
 msgstr ""
 
-#: zenlite/search.php:20
+#: zenlite/search.php:18
 msgid "of"
 msgstr ""
 
-#: zenlite/search.php:20
+#: zenlite/search.php:18
 msgid "of results"
 msgstr ""
 
-#: zenlite/search.php:50
-msgid "Read "
+#: zenlite/search.php:38
+#, php-format
+msgid "Sorry - I couldn't find anything on %1$s%2$s%3$s"
 msgstr ""
 
 #: zenlite/searchform.php:3
@@ -403,49 +507,235 @@ msgstr ""
 msgid "Search"
 msgstr ""
 
-#: zenlite/library/theme-options.php:16
-msgid "Pages"
+#: zenlite/library/donate.php:2
+msgid "Theme Donations"
 msgstr ""
 
-#: zenlite/library/theme-options.php:20
-msgid "Categories"
+#: zenlite/library/donate.php:3
+msgid "Please support us so we can support you."
 msgstr ""
 
-#: zenlite/library/theme-options.php:30
-#: zenlite/library/theme-options.php:44
-msgid "Yes"
+#: zenlite/library/donate.php:22
+msgid "Thank you!"
 msgstr ""
 
-#: zenlite/library/theme-options.php:34
-#: zenlite/library/theme-options.php:48
-msgid "No"
+#: zenlite/library/donate.php:26
+msgid "Theme Support"
 msgstr ""
 
-#: zenlite/library/theme-options.php:63
+#: zenlite/library/theme-options.php:14
 msgid "Theme Options"
 msgstr ""
 
-#: zenlite/library/theme-options.php:88
-msgid " Theme Options"
+#: zenlite/library/theme-options.php:21
+msgid "ZenLite support on Quirm.net"
+msgstr ""
+
+#: zenlite/library/theme-options.php:22
+msgid "ZenLite support on wordress.org"
 msgstr ""
 
-#: zenlite/library/theme-options.php:91
+#: zenlite/library/theme-options.php:64
 msgid "Your theme options have been saved"
 msgstr ""
 
-#: zenlite/library/theme-options.php:100
-msgid "Use the top navigation menu to display links to:"
+#: zenlite/library/theme-options.php:111
+msgid "Use the non-custom navigation menu to display links to:"
+msgstr ""
+
+#: zenlite/library/theme-options.php:117
+msgid "Display site name &amp; tagline above header image?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:123
+msgid "Display \"Pages in this section\" list?"
 msgstr ""
 
-#: zenlite/library/theme-options.php:106
-msgid "Display an author link on posts?"
+#: zenlite/library/theme-options.php:129
+msgid "Display auto-generated title on Posts/Pages without titles?"
 msgstr ""
 
-#: zenlite/library/theme-options.php:112
+#: zenlite/library/theme-options.php:135
+msgid "Display author name/link on Posts?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:141
 msgid "Display allowed tags on comment form?"
 msgstr ""
 
-#: zenlite/library/theme-options.php:117
+#: zenlite/library/theme-options.php:146
 msgid "Update Theme"
 msgstr ""
 
+#: zenlite/library/zenlite-options-guide.php:7
+msgid "Option Documentation"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:9
+msgid "Display links to"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:10
+msgid "If you are not using widgets or a custom menu in your main navigation menu, you can choose to display links to either your Pages or your Categories."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:11
+msgid "Default: Pages"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:13
+msgid "Display site name &amp; tagline"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:14
+msgid "The theme will show your site's name and the tagline (as configured in Settings &rarr; General) above the header image. Leaving these fields blank will negatively impact on your searc engine optimisation (SEO). If you set this option to 'No', the site name and tagline will be hidden on graphical web browsers but will remain available to search engines."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:15
+#: zenlite/library/zenlite-options-guide.php:19
+#: zenlite/library/zenlite-options-guide.php:23
+#: zenlite/library/zenlite-options-guide.php:27
+#: zenlite/library/zenlite-options-guide.php:31
+msgid "Default: Yes"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:17
+msgid "Display \"Pages in this section\" list"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:18
+msgid "Pages that belong to a Parent/Child tree will automatically show a sidebox containing links to all Pages in the tree. Select 'No' to remove this box from all Pages."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:21
+msgid "Display auto-generated title on Posts/Pages without titles"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:22
+msgid "Titles in Pages and Posts are often used to create links within WordPress. If you forget to add a title to a document, this can cause problems in some situations. The theme will automatically generate a title ('No Title') on all such pages. If you do not want auto-generated titles, select 'No'. However, you may also see the Post Formats documentation for ways of hiding post titles on specific post formats."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:25
+msgid "Display author name/link on Posts"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:26
+msgid "Pretty much what it says on the box. Select 'No' if you do not want the author's name (and a link to thr author's profile and list of posts) to appear on Posts."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:29
+msgid "Display allowed tags on comment form"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:30
+msgid "The WordPress commenting system only allows a subset of markup tags to be used within comments. It can also display a list of the allowed tags below the comment box. Select 'No' if you do not want this list of allowed tags to be displayed."
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:12
+msgid "Pages"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:16
+msgid "Categories"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:26
+#: zenlite/library/zenlite-theme-options-array.php:40
+#: zenlite/library/zenlite-theme-options-array.php:54
+#: zenlite/library/zenlite-theme-options-array.php:68
+#: zenlite/library/zenlite-theme-options-array.php:82
+msgid "Yes"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:30
+#: zenlite/library/zenlite-theme-options-array.php:44
+#: zenlite/library/zenlite-theme-options-array.php:58
+#: zenlite/library/zenlite-theme-options-array.php:72
+#: zenlite/library/zenlite-theme-options-array.php:86
+msgid "No"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:7
+msgid "Post Formats Documentation"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:9
+msgid "Aside"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:10
+msgid "Similar to a Facebook note update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default aside image will be shown."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:12
+msgid "Gallery"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:13
+msgid "A gallery of images. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default gallery image will be used instead."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:15
+msgid "Link"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:16
+msgid "A single link to another site. The link's text will be used as the post title along with a small link icon to indicate that it leads to an external page. In the single post view, the link's url (address) will also be shown. No other post content will be displayed.,"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:18
+msgid "Image"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:19
+msgid "A post containing a single attached image. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default image icon will be used instead."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:21
+msgid "Quote"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:22
+msgid "A single quotation within <code>blockquote</code> tags.The quotation.post content will be displayed and styled on both archive and single post pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:24
+msgid "Status"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:25
+msgid "Similar to a Twitter status update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default status image will be shown."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:27
+msgid "Video"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:28
+msgid "A post containing 1 or more videos. The video itself and any post content will only be shown on the single post view. This format does not support the display of featured images but a default video icon will be displayed on all archive pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:30
+msgid "Audio"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:31
+msgid "A post containing 1 or more audio files. The audio file and any post content will only be shown on the single post view. This format does not support the display of featured images but a default audio icon will displayed on all archive pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:33
+msgid "Chat"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:34
+msgid "A styled chat transcript. This format does not support the display of featured images but styling will be displayed on both archive and single post pages"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:36
+msgid "Standard"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:37
+msgid "A standard wordPress post."
+msgstr ""
+
diff --git a/wp-content/themes/zenlite/langs/zenlite.pot b/wp-content/themes/zenlite/langs/zenlite.pot
new file mode 100644
index 0000000000000000000000000000000000000000..43de058ccf518af5b26627731a40ae2ef1bc9583
--- /dev/null
+++ b/wp-content/themes/zenlite/langs/zenlite.pot
@@ -0,0 +1,741 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: ZenLite\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-09-14 21:59-0000\n"
+"PO-Revision-Date: 2011-09-14 21:59-0000\n"
+"Last-Translator: Mel P. <esmi@quirm.net>\n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
+"X-Poedit-Basepath: E:\\data\\data3\\server\\wordpress\\wp-content\\themes\\\n"
+"X-Poedit-SearchPath-0: zenlite\n"
+
+#: zenlite/404.php:7
+msgid "Page Not Found"
+msgstr ""
+
+#: zenlite/404.php:10
+msgid "Uh oh! I can't seem to find the file you asked for."
+msgstr ""
+
+#: zenlite/404.php:12
+msgid "Perhaps you:"
+msgstr ""
+
+#: zenlite/404.php:15
+msgid "tried to access a post or archive that has been removed"
+msgstr ""
+
+#: zenlite/404.php:16
+msgid "followed a bad link"
+msgstr ""
+
+#: zenlite/404.php:17
+msgid "mis-typed something"
+msgstr ""
+
+#: zenlite/404.php:25
+msgid "Try using the Search option to find what you're looking for."
+msgstr ""
+
+#: zenlite/archives.php:8
+msgid "Archives by Month:"
+msgstr ""
+
+#: zenlite/archives.php:13
+msgid "Archives by Subject:"
+msgstr ""
+
+#: zenlite/attachment.php:14
+#, php-format
+msgid "Download the <a href=\"%1$s\" rel=\"attachment\">%2$s</a> file."
+msgstr ""
+
+#: zenlite/attachment.php:16
+#, php-format
+msgid "Published on %1$s at %2$s"
+msgstr ""
+
+#: zenlite/attachment.php:19
+#, php-format
+msgid "Updated on %1$s at %2$s"
+msgstr ""
+
+#: zenlite/attachment.php:36
+msgid "Posted under"
+msgstr ""
+
+#: zenlite/attachment.php:36
+msgid "Return to parent page"
+msgstr ""
+
+#: zenlite/author.php:8
+msgid "About"
+msgstr ""
+
+#: zenlite/author.php:12
+msgid "Bio"
+msgstr ""
+
+#: zenlite/author.php:17
+msgid "Website"
+msgstr ""
+
+#: zenlite/author.php:23
+msgid "Jabber / Google Talk"
+msgstr ""
+
+#: zenlite/author.php:28
+#, php-format
+msgid "<abbr title=\"%1$s\">%2$s</abbr>"
+msgstr ""
+
+#: zenlite/author.php:28
+msgid "AOL Instant Messenger"
+msgstr ""
+
+#: zenlite/author.php:28
+msgid "AIM"
+msgstr ""
+
+#: zenlite/author.php:33
+#, php-format
+msgid "%1$s <abbr title=\"%2$s\">%3$s</abbr>"
+msgstr ""
+
+#: zenlite/author.php:33
+msgid "Yahoo"
+msgstr ""
+
+#: zenlite/author.php:33
+msgid "Instant Messenger"
+msgstr ""
+
+#: zenlite/author.php:33
+msgid "IM"
+msgstr ""
+
+#: zenlite/author.php:41
+msgid "Posts by"
+msgstr ""
+
+#: zenlite/comments.php:3
+msgid "This entry's comments are password protected. Enter the password into the form above to view the comments."
+msgstr ""
+
+#: zenlite/comments.php:13
+msgid "No comments"
+msgstr ""
+
+#: zenlite/comments.php:14
+msgid "1 Comment"
+msgstr ""
+
+#: zenlite/comments.php:15
+msgid "% Comments"
+msgstr ""
+
+#: zenlite/comments.php:17
+#: zenlite/format-chat.php:32
+msgid " on "
+msgstr ""
+
+#: zenlite/comments.php:23
+msgid "Add your comment"
+msgstr ""
+
+#: zenlite/comments.php:25
+msgid "Comments feed for this post"
+msgstr ""
+
+#: zenlite/comments.php:27
+msgid "TrackBack"
+msgstr ""
+
+#: zenlite/comments.php:27
+msgid "Uniform Resource Identifier"
+msgstr ""
+
+#: zenlite/comments.php:27
+msgid "URI"
+msgstr ""
+
+#: zenlite/footer.php:18
+#, php-format
+msgid "Powered by the %1$s Theme %2$s"
+msgstr ""
+
+#: zenlite/format-aside.php:1
+#: zenlite/format-audio.php:1
+#: zenlite/format-audio.php:19
+#: zenlite/format-chat.php:1
+#: zenlite/format-gallery.php:1
+#: zenlite/format-gallery.php:11
+#: zenlite/format-image.php:1
+#: zenlite/format-image.php:10
+#: zenlite/format-page.php:2
+msgid "Permalink to "
+msgstr ""
+
+#: zenlite/format-aside.php:5
+#: zenlite/format-chat.php:5
+#: zenlite/format-gallery.php:5
+#: zenlite/format-image.php:5
+#: zenlite/format-link.php:15
+#, php-format
+msgid "Edit %1$s"
+msgstr ""
+
+#: zenlite/format-aside.php:22
+#: zenlite/format-aside.php:34
+msgid " @ "
+msgstr ""
+
+#: zenlite/format-aside.php:27
+#: zenlite/format-chat.php:36
+#: zenlite/format-gallery.php:28
+#: zenlite/format-image.php:41
+#: zenlite/format-link.php:34
+msgid "Comment on "
+msgstr ""
+
+#: zenlite/format-aside.php:28
+#: zenlite/format-chat.php:37
+#: zenlite/format-gallery.php:29
+#: zenlite/format-image.php:42
+#: zenlite/format-link.php:35
+msgid "1 Comment on "
+msgstr ""
+
+#: zenlite/format-aside.php:29
+#: zenlite/format-chat.php:38
+#: zenlite/format-gallery.php:30
+#: zenlite/format-image.php:43
+#: zenlite/format-link.php:36
+msgid "% Comments on "
+msgstr ""
+
+#: zenlite/format-aside.php:31
+#: zenlite/format-chat.php:40
+#: zenlite/format-gallery.php:32
+#: zenlite/format-image.php:45
+#: zenlite/format-link.php:38
+msgid "Comments are off for "
+msgstr ""
+
+#: zenlite/format-aside.php:37
+#: zenlite/format-audio.php:23
+#: zenlite/format-chat.php:44
+#: zenlite/format-gallery.php:36
+#: zenlite/format-image.php:49
+#: zenlite/format-link.php:42
+msgid "Filed under:"
+msgstr ""
+
+#: zenlite/format-aside.php:39
+#: zenlite/format-audio.php:25
+#: zenlite/format-chat.php:46
+#: zenlite/format-gallery.php:38
+#: zenlite/format-image.php:51
+#: zenlite/format-link.php:44
+msgid "Tags:"
+msgstr ""
+
+#: zenlite/format-audio.php:19
+#, php-format
+msgid "Listen to %1$s"
+msgstr ""
+
+#: zenlite/format-audio.php:21
+#: zenlite/format-link.php:30
+msgid "Posted on "
+msgstr ""
+
+#: zenlite/format-audio.php:21
+#: zenlite/format-gallery.php:22
+#: zenlite/format-image.php:37
+#: zenlite/format-link.php:30
+msgid " by "
+msgstr ""
+
+#: zenlite/format-chat.php:18
+#: zenlite/format-page.php:19
+msgid "Pages:"
+msgstr ""
+
+#: zenlite/format-chat.php:30
+msgid "Continue reading "
+msgstr ""
+
+#: zenlite/format-chat.php:32
+msgid "Added by "
+msgstr ""
+
+#: zenlite/format-gallery.php:11
+#: zenlite/format-image.php:10
+#, php-format
+msgid "View %1$s"
+msgstr ""
+
+#: zenlite/format-gallery.php:22
+#: zenlite/format-image.php:37
+msgid "Published on "
+msgstr ""
+
+#: zenlite/format-gallery.php:24
+#, php-format
+msgid "Updated on %1$s %2$s"
+msgstr ""
+
+#: zenlite/format-image.php:24
+msgid "(press ESC to close)"
+msgstr ""
+
+#: zenlite/format-link.php:11
+msgid "External link"
+msgstr ""
+
+#: zenlite/format-page.php:8
+msgid "Pages in this section"
+msgstr ""
+
+#: zenlite/format-page.php:39
+msgid "Edit this page"
+msgstr ""
+
+#: zenlite/format-standard.php:39
+#: zenlite/format-standard.php:40
+msgid "Author: "
+msgstr ""
+
+#: zenlite/format-video.php:15
+#, php-format
+msgid "Watch %1$s"
+msgstr ""
+
+#: zenlite/functions.php:48
+msgid "Header 1"
+msgstr ""
+
+#: zenlite/functions.php:53
+msgid "Header 2"
+msgstr ""
+
+#: zenlite/functions.php:58
+msgid "Header 3"
+msgstr ""
+
+#: zenlite/functions.php:63
+msgid "Header 4"
+msgstr ""
+
+#: zenlite/functions.php:79
+msgid "Main menu"
+msgstr ""
+
+#: zenlite/functions.php:81
+msgid "Main horizontal menu. Recommended use: Pages or Categories."
+msgstr ""
+
+#: zenlite/functions.php:88
+msgid "Footer"
+msgstr ""
+
+#: zenlite/functions.php:90
+msgid "Displayed in the footer area of every page. Just about any widget will work here."
+msgstr ""
+
+#: zenlite/functions.php:97
+msgid "404 Page"
+msgstr ""
+
+#: zenlite/functions.php:99
+msgid "Displayed in the Not Found  (404) Page only. Just about any widget will work here."
+msgstr ""
+
+#: zenlite/functions.php:123
+msgid "Primary"
+msgstr ""
+
+#: zenlite/functions.php:179
+msgid "This post is password protected. To view it, please enter your password below:"
+msgstr ""
+
+#: zenlite/functions.php:181
+msgid "Password:"
+msgstr ""
+
+#: zenlite/functions.php:191
+msgid "This is a password protected entry."
+msgstr ""
+
+#: zenlite/functions.php:201
+msgid "No Title"
+msgstr ""
+
+#: zenlite/functions.php:249
+#: zenlite/header.php:50
+msgid "Home"
+msgstr ""
+
+#: zenlite/functions.php:261
+#: zenlite/functions.php:279
+msgid "*"
+msgstr ""
+
+#: zenlite/functions.php:263
+msgid "Name"
+msgstr ""
+
+#: zenlite/functions.php:265
+msgid "Email"
+msgstr ""
+
+#: zenlite/functions.php:279
+msgid " Required fields are marked "
+msgstr ""
+
+#: zenlite/functions.php:279
+msgid "Your details will be stored in a non-tracking cookie but your email address will <em>never</em> be published or shared."
+msgstr ""
+
+#: zenlite/functions.php:281
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment. If you choose to login - or register - on this site, a non-tracking cookie will be stored on your computer but your email address will <em>never</em> be published or shared."
+msgstr ""
+
+#: zenlite/functions.php:283
+#, php-format
+msgid "Logged in as <a href=\"%s\">%s</a>. <a href=\"%s\" title=\"Log out of this account\">Log out?</a></label></p>"
+msgstr ""
+
+#: zenlite/functions.php:285
+msgid "Comment"
+msgstr ""
+
+#: zenlite/functions.php:286
+msgid "Submit Reply"
+msgstr ""
+
+#: zenlite/functions.php:288
+msgid "You may use these <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr> tags and attributes:"
+msgstr ""
+
+#: zenlite/header.php:26
+msgid " - No search query entered!"
+msgstr ""
+
+#: zenlite/header.php:29
+#, php-format
+msgid " - Entries tagged with %1$s "
+msgstr ""
+
+#: zenlite/header.php:30
+#, php-format
+msgid " - Archives for %1$s "
+msgstr ""
+
+#: zenlite/header.php:31
+msgid " - Page not found!"
+msgstr ""
+
+#: zenlite/header.php:45
+msgid "Jump to Main Content"
+msgstr ""
+
+#: zenlite/header.php:46
+msgid "Jump to Footer"
+msgstr ""
+
+#: zenlite/image.php:28
+msgid "More images posted under"
+msgstr ""
+
+#: zenlite/loop.php:3
+#: zenlite/loop.php:21
+#: zenlite/search.php:33
+msgid "Older Posts"
+msgstr ""
+
+#: zenlite/loop.php:4
+#: zenlite/loop.php:22
+#: zenlite/search.php:34
+msgid "Newer Posts"
+msgstr ""
+
+#: zenlite/search.php:4
+msgid "Search Results"
+msgstr ""
+
+#: zenlite/search.php:10
+msgid " page"
+msgstr ""
+
+#: zenlite/search.php:11
+msgid " pages"
+msgstr ""
+
+#: zenlite/search.php:15
+msgid "You searched for"
+msgstr ""
+
+#: zenlite/search.php:18
+msgid "Displaying page"
+msgstr ""
+
+#: zenlite/search.php:18
+msgid "of"
+msgstr ""
+
+#: zenlite/search.php:18
+msgid "of results"
+msgstr ""
+
+#: zenlite/search.php:38
+#, php-format
+msgid "Sorry - I couldn't find anything on %1$s%2$s%3$s"
+msgstr ""
+
+#: zenlite/searchform.php:3
+msgid "Keyword(s)"
+msgstr ""
+
+#: zenlite/searchform.php:4
+msgid "Search"
+msgstr ""
+
+#: zenlite/library/donate.php:2
+msgid "Theme Donations"
+msgstr ""
+
+#: zenlite/library/donate.php:3
+msgid "Please support us so we can support you."
+msgstr ""
+
+#: zenlite/library/donate.php:22
+msgid "Thank you!"
+msgstr ""
+
+#: zenlite/library/donate.php:26
+msgid "Theme Support"
+msgstr ""
+
+#: zenlite/library/theme-options.php:14
+msgid "Theme Options"
+msgstr ""
+
+#: zenlite/library/theme-options.php:21
+msgid "ZenLite support on Quirm.net"
+msgstr ""
+
+#: zenlite/library/theme-options.php:22
+msgid "ZenLite support on wordress.org"
+msgstr ""
+
+#: zenlite/library/theme-options.php:64
+msgid "Your theme options have been saved"
+msgstr ""
+
+#: zenlite/library/theme-options.php:111
+msgid "Use the non-custom navigation menu to display links to:"
+msgstr ""
+
+#: zenlite/library/theme-options.php:117
+msgid "Display site name &amp; tagline above header image?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:123
+msgid "Display \"Pages in this section\" list?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:129
+msgid "Display auto-generated title on Posts/Pages without titles?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:135
+msgid "Display author name/link on Posts?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:141
+msgid "Display allowed tags on comment form?"
+msgstr ""
+
+#: zenlite/library/theme-options.php:146
+msgid "Update Theme"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:7
+msgid "Option Documentation"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:9
+msgid "Display links to"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:10
+msgid "If you are not using widgets or a custom menu in your main navigation menu, you can choose to display links to either your Pages or your Categories."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:11
+msgid "Default: Pages"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:13
+msgid "Display site name &amp; tagline"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:14
+msgid "The theme will show your site's name and the tagline (as configured in Settings &rarr; General) above the header image. Leaving these fields blank will negatively impact on your searc engine optimisation (SEO). If you set this option to 'No', the site name and tagline will be hidden on graphical web browsers but will remain available to search engines."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:15
+#: zenlite/library/zenlite-options-guide.php:19
+#: zenlite/library/zenlite-options-guide.php:23
+#: zenlite/library/zenlite-options-guide.php:27
+#: zenlite/library/zenlite-options-guide.php:31
+msgid "Default: Yes"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:17
+msgid "Display \"Pages in this section\" list"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:18
+msgid "Pages that belong to a Parent/Child tree will automatically show a sidebox containing links to all Pages in the tree. Select 'No' to remove this box from all Pages."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:21
+msgid "Display auto-generated title on Posts/Pages without titles"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:22
+msgid "Titles in Pages and Posts are often used to create links within WordPress. If you forget to add a title to a document, this can cause problems in some situations. The theme will automatically generate a title ('No Title') on all such pages. If you do not want auto-generated titles, select 'No'. However, you may also see the Post Formats documentation for ways of hiding post titles on specific post formats."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:25
+msgid "Display author name/link on Posts"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:26
+msgid "Pretty much what it says on the box. Select 'No' if you do not want the author's name (and a link to thr author's profile and list of posts) to appear on Posts."
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:29
+msgid "Display allowed tags on comment form"
+msgstr ""
+
+#: zenlite/library/zenlite-options-guide.php:30
+msgid "The WordPress commenting system only allows a subset of markup tags to be used within comments. It can also display a list of the allowed tags below the comment box. Select 'No' if you do not want this list of allowed tags to be displayed."
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:12
+msgid "Pages"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:16
+msgid "Categories"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:26
+#: zenlite/library/zenlite-theme-options-array.php:40
+#: zenlite/library/zenlite-theme-options-array.php:54
+#: zenlite/library/zenlite-theme-options-array.php:68
+#: zenlite/library/zenlite-theme-options-array.php:82
+msgid "Yes"
+msgstr ""
+
+#: zenlite/library/zenlite-theme-options-array.php:30
+#: zenlite/library/zenlite-theme-options-array.php:44
+#: zenlite/library/zenlite-theme-options-array.php:58
+#: zenlite/library/zenlite-theme-options-array.php:72
+#: zenlite/library/zenlite-theme-options-array.php:86
+msgid "No"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:7
+msgid "Post Formats Documentation"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:9
+msgid "Aside"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:10
+msgid "Similar to a Facebook note update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default aside image will be shown."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:12
+msgid "Gallery"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:13
+msgid "A gallery of images. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default gallery image will be used instead."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:15
+msgid "Link"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:16
+msgid "A single link to another site. The link's text will be used as the post title along with a small link icon to indicate that it leads to an external page. In the single post view, the link's url (address) will also be shown. No other post content will be displayed.,"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:18
+msgid "Image"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:19
+msgid "A post containing a single attached image. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default image icon will be used instead."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:21
+msgid "Quote"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:22
+msgid "A single quotation within <code>blockquote</code> tags.The quotation.post content will be displayed and styled on both archive and single post pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:24
+msgid "Status"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:25
+msgid "Similar to a Twitter status update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default status image will be shown."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:27
+msgid "Video"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:28
+msgid "A post containing 1 or more videos. The video itself and any post content will only be shown on the single post view. This format does not support the display of featured images but a default video icon will be displayed on all archive pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:30
+msgid "Audio"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:31
+msgid "A post containing 1 or more audio files. The audio file and any post content will only be shown on the single post view. This format does not support the display of featured images but a default audio icon will displayed on all archive pages."
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:33
+msgid "Chat"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:34
+msgid "A styled chat transcript. This format does not support the display of featured images but styling will be displayed on both archive and single post pages"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:36
+msgid "Standard"
+msgstr ""
+
+#: zenlite/library/zenlite_post_formats.php:37
+msgid "A standard wordPress post."
+msgstr ""
+
diff --git a/wp-content/themes/zenlite/layout.css b/wp-content/themes/zenlite/layout.css
index d846ebaf9a1da1caa0eb0487fa1a3ca8d23d128e..2ada11ef3ef330fe2381d72f7bc3898cf46af237 100644
--- a/wp-content/themes/zenlite/layout.css
+++ b/wp-content/themes/zenlite/layout.css
@@ -47,7 +47,7 @@ dt {
 	margin-top:10px;
 }
 li {
-	margin-bottom:10px;
+	margin-bottom:5px;
 }
 ol li {
 	list-style-type:decimal;
@@ -80,8 +80,9 @@ a acronym,a abbr {
 	border-bottom:none;
 }
 blockquote {
-	margin:0 20px;
-	padding:0 10px;
+	min-height:60px;
+	margin:0;
+	padding:5px 0 0 63px;
 }
 blockquote cite {
 	display:block;
@@ -95,18 +96,23 @@ q {
 q:before, q:after {
     content:"";
 }
-pre,code,tt,kbd,var {
-	font-family:'courier new',courier, monospace;
+ins {
+	padding:0 2px;
+	text-decoration:none;
 }
-pre,code,tt,kbd,var {
+pre,
+code,
+tt,
+kbd,
+var {
+	font-family:'courier new',courier, monospace;
 	font-size:1.05em;
 }
 pre {
 	overflow:auto;
 	white-space:pre;
-	padding:5px;
-}
-code {
+	padding:3px 5px 12px;
+	line-height:20px;
 }
 address {
 	font-style:normal;
@@ -146,13 +152,12 @@ ul.jumplinks,.jumplinks {
 	position:absolute;
 	top:-9000px;
 	left:-9000px;
-	z-index:90;
+	z-index:99;
 }
 .jumplinks a:active,.jumplinks a:focus {
 	position:absolute;
-	top:9000px;
+	top:9020px;
 	left:9010px;
-	z-index:500;
 	width:15em;
 	margin:0;
 	padding:3px;
@@ -200,37 +205,68 @@ ul.jumplinks,.jumplinks {
 }
 
 /* MENU */
-.sidebar {
+.navbar {
 	margin:0;
 	padding:0;
 	font-weight:bold;
 	font-size:.9em;
+	font-variant:small-caps;
+	line-height:1em;
+}
+.navbar:after {
+    content: ".";
+    display: block;
+    height: 0;
+    clear: both;
+    visibility: hidden;
 }
-.sidebar ul,.sidebar li {
+.navbar ul {
 	margin:0;
 	padding:0;
 	display:inline;
+}
+.navbar li {
+	margin:0;
+	padding:0;
+	float:left;
 	list-style-type:none;
-	line-height:1em;
-	font-variant:small-caps;
+	position:relative;
 }
-.sidebar .current_page_item,.sidebar .current_page_ancestor,
-.sidebar .current-cat,.sidebar .current-menu-item {
-	font-weight:bold;
+.navbar ul ul {
+	display:none;
+	float:left;
+	position:absolute;
+	left:0;
+	z-index:90;
+	top:30px;
+	width:150px;
+}
+.navbar li:hover > ul {
+	display:block;
+}
+.navbar ul ul li {
+	min-width:150px;
+}
+.navbar ul ul ul {
+	top:0;
+	left:100%;
 }
-.sidebar .recentcomments {
+.navbar .recentcomments {
 	margin-right:10px;
 }
-.sidebar #searchform {
+.navbar #searchform {
 	margin:5px 0;
 }
-.sidebar a {
-	display:inline-block;
+.navbar a {
+	display:block;
+	line-height:20px;
 	padding:5px;
 	margin:0;
 	text-decoration:none;
 }
-.sidebar a:hover,.sidebar a:active,.sidebar a:focus {
+.navbar a:hover,
+.navbar a:active,
+.navbar a:focus {
 	text-decoration:underline;
 }
 
@@ -243,43 +279,43 @@ ul.jumplinks,.jumplinks {
 	font-size:.9em;
 }
 /* clear all floats */
-#content:after {
+#content:after,
+#content .hentry:after {
     content: ".";
     display: block;
     height: 0;
     clear: both;
     visibility: hidden;
 }
-#content .post,#content .page,#content .attachment,.postcontent {
-	display:block;
-	margin:0;
-    padding:0;
-}
-.img .postcontent {
-	text-align:center;
-	margin-bottom:30px;
+#content .hentry {
+    padding-bottom:20px;
 }
-.post-title {
-	margin:0;
+.post-title,
+.posts-by {
+	margin:20px 0 0;
 	padding:0;
+	font-size:1.6em;
+	letter-spacing: .01em;
 }
 .post-title a {
 	text-decoration:none;
 }
-.post-title a:hover,.post-title a:active,.post-title a:focus {
+.post-title a:hover,
+.post-title a:active,
+.post-title a:focus {
 	text-decoration:underline;
 }
-#content .meta li,#content .prevnext li {
-	list-style-image:none;
-	list-style:none;
+.sticky .post-title a {
+	padding-right:30px;
 }
 .meta {
-	margin:5px 0;
+	margin:3px 0 0;
 	padding:0;
 	font-size:.9em;
-	line-height:1.2em;
+	line-height:1.3em;
 }
-.meta ul,.meta li {
+.meta ul,
+.meta li {
 	margin:0;
 	padding:0;
 }
@@ -290,63 +326,173 @@ ul.jumplinks,.jumplinks {
 	display:inline;
 	padding-right:.1em;
 }
+.postcontent {
+	min-height:20px;
+}
+.postcontent p+ ul {
+	margin-top:-.7em;
+}
 .postfoot {
 	clear:both;
-	margin-bottom:20px;
-	padding-bottom:10px;
+	margin-right:5px;
 }
-.more-link,.comment-link {
-	text-align:right;
-	line-height:1.5em;
+.more-link {
+	clear:both;
+	float:right;
+}
+.more-link:after {
+	content:"\00A0\00BB";
+}
+div.more-link {
+	font-size:.9em;
+}
+.post-edit-link {
+	clear:both;
+	display:block;
+}
+
+/* Post formats */
+.format-aside .post-title,
+.format-status .post-title {
+	position:absolute;
+	top:-9999px;
+	left:-9999px;
+}
+.format-audio .more-link img,
+.format-gallery .more-link img,
+.format-image .more-link img {
+	display:block;
+	margin:0 0 3px auto;
+}
+.format-audio .postcontent {
+	min-height:50px;
+	margin-right:110px;
+}
+.format-gallery .postfoot,
+.format-image .postfoot {
+	clear:none;
+	float:left;
+}
+.format-chat .postcontent {
+	margin:20px 0;
+	padding:2px 5px 3px;
+	line-height:20px;
 }
-.author .posts-by {
-	padding-top:10px;
+.format-chat .postcontent p {
+	margin:0;
+}
+.format-image .postcontent {
+	text-align:center;
+	margin:20px auto;
+	padding:0;
+}
+.format-link .post-title a {
+	display:inline-block;
+	min-height:32px;
+	padding-right:40px;
+}
+.format-link .postcontent a {
+	font-size:1.2em;
+}
+.format-quote .postcontent {
+	min-height: 60px;
+	margin:20px 0;
+	padding: 0 0 0 70px;
+}
+.format-quote .postcontent .inner {
+	min-height: 60px;
+	margin:0;
+	padding:0 70px 0 0;
+}
+.format-quote .postcontent blockquote {
+	min-height:0;
+	padding:0;
+}
+.format-quote .postcontent blockquote cite {
+    display:block;
+    font-size: 0.86em;
+    font-style: normal;
+    padding-bottom: 15px;
+}
+.format-video .more-link a {
+	padding-top:100px;
+	display:inline-block;
+}
+.single .format-video embed {
+	margin-left:auto;
+	margin-right:auto;
+	display:block;
 }
 
 /* page tree */
-.page-tree {
+.pagetree {
 	float:right;
 	width:15em;
 	margin:0 0 20px 20px;
-	padding:0 5px;
+	padding:3px 5px 0;
 }
-.page-tree h3 {
-	font-size:1.2em;
-	margin:0;
+.pagetree h3 {
+	font-size:1.1em;
+	margin:5px 0;
 	padding:0;
 }
-.page-tree ul {
+.pagetree ul {
 	margin:0;
 	padding:0 .3em;
 }
-.page-tree li ul {
+.pagetree li ul {
 	margin-left:1em;
 }
-.page-tree li:before {
+.pagetree li:before {
 	content: " \BB\ ";
 }
-.page-tree li.current_page_item {
+.pagetree li.current_page_item {
 	font-weight:bold;
 }
-.page-tree li.current_page_item li {
+.pagetree li.current_page_item li {
 	font-weight:normal;
 }
-.page-tree li.current_page_item a {
+.pagetree li.current_page_item a {
 	text-decoration:none;
 }
-.page-tree li.current_page_item a:hover {
+.pagetree li.current_page_item a:hover {
 	text-decoration:underline;
 }
 
 /* pagination */
 .prevnext {
-	margin:20px 0;
+	clear:both;
+	margin:20px 3px 20px 0;
 	padding:0;
 	text-align:center;
+	font-size:.9em;
+}
+.prevnext:after {
+    content: ".";
+    display: block;
+    height: 0;
+    clear: both;
+    visibility: hidden;
 }
 .prevnext li {
 	margin:0;
-	padding:0 10px;
+	padding:0;
+}
+.prevnext a {
+	text-decoration:none;
+}
+.prevnext a:hover {
+	text-decoration:underline;
+}
+.prevnext .next a {
+	float:left;
+	padding:0 10px 0 20px;
+}
+.prevnext .prev a {
+	float:right;
+	padding:0 20px 0 10px;
+}
+.image-nav li {
 	display:inline;
 }
 .pagelist {
@@ -374,13 +520,18 @@ ul.jumplinks,.jumplinks {
 .page-numbers a {
 	padding:0 5px;
 }
-.page-numbers a, .pagelist a {
+.page-numbers a, 
+.pagelist a {
 	text-decoration:none;
 	margin: 0 2px;
 	padding:0 3px 2px;
 }
-.page-numbers a:hover,.page-numbers a:active,.page-numbers a:focus,
-.pagelist a:hover,.pagelist a:active,.pagelist a:focus{
+.page-numbers a:hover,
+.page-numbers a:active,
+.page-numbers a:focus,
+.pagelist a:hover,
+.pagelist a:active,
+.pagelist a:focus{
 	text-decoration:underline;
 }
 
@@ -415,10 +566,11 @@ ul.jumplinks,.jumplinks {
 }
 
 /* images */
-.alignleft,.wp-post-image {
+.alignleft,
+.wp-post-image {
 	float:left;
 }
-.alignright,.result-list .wp-post-image {
+.alignright {
 	float:right;
 }
 .aligncenter {
@@ -428,16 +580,20 @@ ul.jumplinks,.jumplinks {
 .alignnone {
 	float:none;
 }
-img.alignleft,.wp-post-image,div.alignleft {
+.alignleft,
+img.alignleft,
+.wp-post-image {
 	margin:0 20px 20px 0;
 }
-img.alignright,.result-list .wp-post-image,div.alignright {
+.alignright,
+img.alignright {
 	margin:0 0 20px 20px;
 }
-img.aligncenter,div.aligncenter {
+.aligncenter,
+img.aligncenter {
 	margin:10px auto;
 }
-.img-attachment .main-img {
+.main-img {
 	text-align:center;
 	margin:20px auto 0;
 	padding:0;
@@ -452,22 +608,16 @@ img.aligncenter,div.aligncenter {
 	margin:40px 0 5px;
 	padding:0;
 }
-.img-attachment .image-nav {
-	margin-top:0;
-}
 .img-attachment img.attachment-thumbnail {
-	float:left;
 	display:inline;
 }
-.img-attachment .prevnext img.attachment-thumbnail {
-	float:none;
-	vertical-align:middle;
-}
-.attachment .attachment-caption,.attachment .attachment-content {
+.attachment .attachment-caption,
+.attachment .attachment-content {
 	clear:both;
 }
 .attachment .posted-under {
 	clear:both;
+	text-align:center;
 	font-size:.8em;
 }
 
@@ -484,11 +634,14 @@ img.aligncenter,div.aligncenter {
 }
 
 /* comments */
-.total-comments {
+#comments {
+	margin:0;
+	padding:20px 0 0;
 	font-size:1em;
 	font-weight:bold;
 }
-#commentlist .commentdata,#commentlist,#commentlist ul {
+#commentlist .commentdata,
+#commentlist,#commentlist ul {
 	margin:0;
 	padding:0;
 }
@@ -502,11 +655,10 @@ img.aligncenter,div.aligncenter {
 }
 #commentlist .comment-author {
 	float:left;
-	margin-right:20px;
 }
 #commentlist img {
 	float:left;
-	margin:1px 10px 5px 1px;
+	margin:1px 0 5px 1px;
 	padding:0;
 }
 #commentlist .commentmetadata {
@@ -517,11 +669,18 @@ img.aligncenter,div.aligncenter {
 }
 #commentlist .comment-author cite {
 	display:inline;
-	margin:0;
-	padding:0;
+	margin:0 0 0 4px;
+	padding:0 0 0 5px;
 	text-align:left;
 	font-style:normal;
 }
+#commentlist .bypostauthor > .comment-body cite {
+	padding-left:20px;
+}
+#commentlist .comment-author + em {
+	clear:left;
+	display:block;
+}
 #commentlist .comment-edit-link {
 	font-size:x-small;
 }
@@ -530,10 +689,24 @@ img.aligncenter,div.aligncenter {
 	margin:0;
 	padding:0 10px;
 }
-#commentlist .comment p,#commentlist .trackback p,#commentlist .pingback p {
+#commentlist .comment p,
+#commentlist .trackback p,
+#commentlist .pingback p {
 	clear:both;
 	padding:0 10px;
 }
+#commentlist blockquote,
+#commentlist blockquote cite {
+	font-style:italic;
+}
+#commentlist blockquote {
+	margin:0 0 0 20px;
+	padding:0;
+	min-height:0;
+}
+#commentlist blockquote cite {
+	padding-bottom:0;
+}
 #commentlist .reply {
 	text-align:right;
 	margin-right:5px;
@@ -543,7 +716,11 @@ img.aligncenter,div.aligncenter {
 	width:96%;
 	margin:0 auto;
 }
-.comment-links,.comment-links li {
+.comment-links {
+	margin:0 0 20px;
+	padding:0;
+}
+.comment-links li {
 	margin:0;
 	padding:0;
 }
@@ -564,6 +741,7 @@ img.aligncenter,div.aligncenter {
 }
 #commentform .form-submit {
 	text-align:right;
+	width:99%;
 }
 #commentform .form-allowed-tags code {
 	font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
@@ -572,17 +750,68 @@ img.aligncenter,div.aligncenter {
 
 /* search results */
 .result-list {
+	margin:30px 0;
+	padding:0;
+}
+.result-list .post-title {
+	margin:0;
+	font-size:1.4em;
+}
+.result-list li {
+	margin-top:20px;
+}
+.result-list li li {
+	margin-top:0;
+}
+.result-list .postcontent p {
 	margin:0;
 	padding:0;
 }
-.result-list h3 {
+.result-list .format-aside .postcontent p {
 	margin:0;
+	padding:0;
 }
-.result-list .more-link,.result-list .comment-link {
-	text-align:left;
+
+/* widget areas */
+.error404 #content .widget-area {
+	margin:20px 0;
+}
+#footer .widget-area {
+	margin-bottom:30px;
+	font-size:.9em;
+}
+/* clear all floats */
+.widget-area:after {
+    content: ".";
+    display: block;
+    height: 0;
+    clear: both;
+    visibility: hidden;
+}
+.widget-area .widget {
+	float:left;
+	width:22%;
+	margin-top:20px;
+	margin-right:3%;
+}
+.widgettitle {
+	margin:0;
+	font-size:1.2em;
+}
+.widget-area ul {
+	margin:5px 0 0;
+	padding:0;
+}
+.widget-area li {
+	list-style-position:inside;
 }
 
 /* tag cloud */
+.navbar .widget_tag_cloud a {
+	display:inline;
+	padding:0 3px;
+	white-space:nowrap;
+}
 .wp-tag-cloud {
 	padding:10px;
 }
@@ -602,11 +831,8 @@ img.aligncenter,div.aligncenter {
 }
 
 /* calendar  */
-#wp-calendar {
-	letter-spacing:normal;
-	text-align:center;
-	font-size:.8em;
-	border-collapse:collapse;
+.navbar #wp-calendar {
+	display:none;
 }
 #wp-calendar caption {
 	margin:0 0 3px;
@@ -617,7 +843,8 @@ img.aligncenter,div.aligncenter {
 	font-size:.9em;
 	text-transform:capitalize;
 }
-#wp-calendar th,#wp-calendar td {
+#wp-calendar th,
+#wp-calendar td {
 	margin:0;
 	padding:2px;
 }
@@ -631,7 +858,8 @@ img.aligncenter,div.aligncenter {
 	display:block;
 	text-decoration:none;
 }
-#wp-calendar tbody, #wp-calendar tfoot {
+#wp-calendar tbody,
+#wp-calendar tfoot {
 	font-size:.8em;
 }
 #wp-calendar #today a {
@@ -640,47 +868,51 @@ img.aligncenter,div.aligncenter {
 #wp-calendar a {
 	text-decoration:underline;
 }
-#wp-calendar a:hover,#wp-calendar a:active,#wp-calendar a:focus {
+#wp-calendar a:hover,
+#wp-calendar a:active,
+#wp-calendar a:focus {
 	text-decoration:none;
 }
 
-/* passwrod form */
+/* password form */
 .password-form br {
 	display:none;
 }
 
-
 /* FOOTER */
 #footer {
 	clear:both;
-	margin:0;
-	padding:0 0 5px;
-	text-align:center;
-	font-size:.8em;
+	padding-bottom:5px;
 }
-#footer ul {
+#footer .site-links {
 	clear:both;
 	margin:0;
 	padding:0;
+	font-size:.8em;
+	text-align:center;
 }
-#footer li {
+#footer .site-links li {
 	display:inline;
 	margin:0;
 	padding:0 5px;
 }
-#footer li.rss {
+#footer site-links .rss {
 	position:relative;
 	top:3px;
 }
+#footer .credits {
+	font-size:.8em;
+	text-align:center;
+}
 
 /* Offsets */
-.sidebar h2, h2.tag-cloud, .offset {
+.navbar h2, 
+.offset {
 	position:absolute;
-	left:-9000px;
-	top:-9000px;
+	left:-9999px;
+	top:-9999px;
 }
 
-
 /* useful stuff to have available */
 .clear-left {
 	clear:left;
diff --git a/wp-content/themes/zenlite/library/donate.php b/wp-content/themes/zenlite/library/donate.php
new file mode 100644
index 0000000000000000000000000000000000000000..0899512894490127e57581535dc2775cec8bddb5
--- /dev/null
+++ b/wp-content/themes/zenlite/library/donate.php
@@ -0,0 +1,28 @@
+<div class="wrap donate">
+<h2><?php _e('Theme Donations', 'zenlite');?></h2>
+<p><?php _e('Please support us so we can support you.', 'zenlite');?></p>
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post" style="margin:0 auto; width:120px;">
+<input type="hidden" name="cmd" value="_xclick" />
+<input type="hidden" name="business" value="paypal@blackwidows.co.uk" />
+<input type="hidden" name="item_name" value="ZenLite theme donation" />
+<input type="hidden" name="buyer_credit_promo_code" value="" />
+<input type="hidden" name="buyer_credit_product_category" value="" />
+<input type="hidden" name="buyer_credit_shipping_method" value="" />
+<input type="hidden" name="buyer_credit_user_address_change" value="" />
+<input type="hidden" name="no_shipping" value="0" />
+<input type="hidden" name="no_note" value="1" />
+<input type="hidden" name="currency_code" value="GBP" />
+<input type="hidden" name="tax" value="0" />
+<input type="hidden" name="lc" value="GB" />
+<input type="hidden" name="bn" value="PP-DonationsBF" />
+<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but21.gif" name="submit" alt="Donate via paypal" />
+<img src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1" alt="" />
+</form>
+
+<p class="thanks"><?php _e('Thank you!', 'zenlite');?></p>
+</div>
+
+<div class="wrap donate">
+<h2><?php _e('Theme Support', 'zenlite');?></h2>
+<p><a href="http://forum.quirm.net">Quirm.net</a></p>
+</div>
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/library/theme-options.css b/wp-content/themes/zenlite/library/theme-options.css
index d3bae0baaedb64220aa0063f8275aff504c05c81..8131ff36aaf44c4404c430f7f39c4b927ad3ad58 100644
--- a/wp-content/themes/zenlite/library/theme-options.css
+++ b/wp-content/themes/zenlite/library/theme-options.css
@@ -1,6 +1,91 @@
 .appearance_page_theme_options legend {
 	font-weight:bold;
+    color:#606060;
 }
 .appearance_page_theme_options fieldset {
 	margin-top:20px;
 }
+.appearance_page_theme_options .donate {
+	clear:right;
+	float:right;
+	width:30%;
+	padding:0 10px;
+	margin:0 0 20px 20px;
+	background:#fff;
+	color:#606060;
+	border:1px solid #E3E3E3;
+	-moz-border-radius:5px;
+	-webkit-border-radius:5px;
+	border-radius:5px;
+}
+.appearance_page_theme_options .donate h2 {
+	font-weight:normal;
+	font-size:1.4em;
+	padding-top:5px;
+}
+.appearance_page_theme_options .donate p {
+	margin-top:0;
+}
+.appearance_page_theme_options .donate .thanks {
+	margin:10px 0;
+	color:#999;
+    font: italic 150% garamond,georgia,palatino,serif;
+    letter-spacing: 0.3em;
+    text-align: center;
+    text-transform: lowercase;
+}
+
+.appearance_page_theme_options #contextual-help-wrap .contextual-links li {
+	list-style:none;
+	margin-left:0;
+}
+
+.appearance_page_theme_options .nav-tabs {
+    margin:0;
+    padding:0 0 0 5px;
+    border-bottom:1px solid #ccc;
+}
+.appearance_page_theme_options .nav-tabs li {
+    display:inline;
+    margin:0;
+    padding:0;
+}
+.appearance_page_theme_options .nav-tab {
+    font: italic 1.4em Georgia,"Times New Roman","Bitstream Charter",Times,serif;
+    padding: 4px 20px 6px;
+}
+
+/* Documentation */
+#zenlite-readme {
+    color:#606060;
+    max-width:800px;
+    padding-bottom:40px;
+}
+#zenlite-readme h3 {
+	padding-top:10px;
+}
+#zenlite-readme h4 {
+	margin-bottom:0;
+}
+#zenlite-readme .border-top {
+	padding-top:20px;
+	margin-top:40px;
+	border-top:1px solid #ccc;
+}
+#zenlite-readme p {
+	font-size:inherit;
+}
+#zenlite-readme abbr {
+	border-bottom:1px dashed #ccc;
+	cursor:help;
+}
+#zenlite-readme code {
+    font-size:1.1em;
+}
+#zenlite-readme .default {
+    display:block;
+    font-style:italic;
+}
+
+
+
diff --git a/wp-content/themes/zenlite/library/theme-options.php b/wp-content/themes/zenlite/library/theme-options.php
index 36dad7cbb266852993a7b852efbec20923e3671b..655c966de8ad610355cb996c2ebdddc7b5cf3870 100644
--- a/wp-content/themes/zenlite/library/theme-options.php
+++ b/wp-content/themes/zenlite/library/theme-options.php
@@ -1,72 +1,33 @@
-<?php 
-
-// THEME OPTIONS
-
-// Set to equal theme text domain name
-$textdomain= 'zenlite';
-
-// Set options array
- $all_theme_options = array(
-	'menu_type' => array(
-		'type' => 'radio',
-		'default' => 'pages',
-		'options' => array(
-			'1' => array(
-				'value' => 'pages',
-				'label' => __( 'Pages', $textdomain )
-			),
-			'2' => array(
-				'value' => 'cats',
-				'label' => __( 'Categories', $textdomain )
-			)
-		)
-	),
-	'author_display' => array(
-		'type' => 'radio',
-		'default' => 'yes',
-		'options' => array(
-			'1' => array(
-				'value' => 'yes',
-				'label' => __( 'Yes', $textdomain )
-			),
-			'2' => array(
-				'value' => 'no',
-				'label' => __( 'No', $textdomain )
-			)
-		)
-	),
-	'kses_display' => array(
-		'type' => 'radio',
-		'default' => 'yes',
-		'options' => array(
-			'1' => array(
-				'value' => 'yes',
-				'label' => __( 'Yes', $textdomain )
-			),
-			'2' => array(
-				'value' => 'no',
-				'label' => __( 'No', $textdomain )
-			)
-		)
-	)
-);
+<?php
+
+// Load theme options
+require_once get_template_directory() . '/library/zenlite-theme-options-array.php';
 
 // White list theme options
 function theme_options_init() {
-	global $textdomain;
-	register_setting( $textdomain. '_options', $textdomain. '_theme_options', 'theme_options_validate' );
+	register_setting( 'zenlite'. '_options', 'zenlite'. '_theme_options', 'theme_options_validate' );
 }
 add_action( 'admin_init', 'theme_options_init' );
 
 // Add theme options page
 function theme_options_add_page() {
-	add_theme_page( __( 'Theme Options' ), __( 'Theme Options' ), 'edit_theme_options', 'theme_options', 'theme_options_do_page' );
+	add_theme_page( __( 'Theme Options', 'zenlite' ), __( 'Theme Options', 'zenlite' ), 'edit_theme_options', 'theme_options', 'theme_options_do_page' );
 }
 add_action('admin_menu', 'theme_options_add_page');
 
+// Add basic contextual help links
+function add_zenlite_contextual_help() {
+	$help = '<ul class="contextual-links">';
+	$help .= '<li><a href="http://quirm.net/forum/forum.php?id=15">' .__( 'ZenLite support on Quirm.net', 'zenlite') . '</a></li>';
+	$help .= '<li><a href="http://wordpress.org/tags/zenlite">' .__( 'ZenLite support on wordress.org', 'zenlite') . '</a></li>';
+	$help .= '</ul>';
+   add_contextual_help( 'appearance_page_theme_options', $help );
+}
+add_action('admin_init','add_zenlite_contextual_help');
+
 // Load theme options stylesheet
 function add_theme_options_style() {
-	$css_file = TEMPLATEPATH . '/library/theme-options.css';
+	$css_file = get_template_directory() . '/library/theme-options.css';
 	$css_url = get_template_directory_uri() . '/library/theme-options.css';
 	if ( file_exists($css_file) ) {
 		wp_register_style('theme_options_style', $css_url, '', '', 'screen');
@@ -78,44 +39,112 @@ function enqueue_theme_options_style() {
 add_action('admin_init', 'add_theme_options_style');
 add_action('admin_print_styles', 'enqueue_theme_options_style');
 
+// Create tabs
+function zenlite_option_tabs( $current = 'options' ) {
+    $tabs = array( 'options' => 'Options', 'guide' => 'Options Guide', 'post-formats' => 'Post Formats' );
+    $links = array();
+    foreach( $tabs as $tab => $name ) :
+        if ( $tab == $current ) $active = ' nav-tab-active';
+        else $active = '';
+        $links[] = '<a class="nav-tab' . $active . '" href="?page=theme_options&amp;tab=' . $tab . '">' . $name . '</a>';
+    endforeach;
+    echo '<ul class="nav-tabs">';
+    foreach ( $links as $link ) echo '<li>' . $link . '</li>';
+    echo '</ul>';
+}
+
 // Theme options form
 function theme_options_do_page() {
-	global  $all_theme_options, $textdomain;
-	if ( ! isset( $_REQUEST['updated'] ) ) $_REQUEST['updated'] = false;
-	?>
-
+	global  $pagenow;
+	$updated = false;
+	if ( isset( $_REQUEST['updated'] ) || isset( $_REQUEST['settings-updated'] ) ) $updated = true;?>
 	<div class="wrap">
-	<?php screen_icon(); echo "<h2>" . get_current_theme() . __( ' Theme Options', $textdomain) . "</h2>"; ?>
-
-	<?php if ( false !== $_REQUEST['updated'] ) : ?>
-	<div class="updated fade"><p><strong><?php _e( 'Your theme options have been saved', $textdomain); ?></strong></p></div>
+	<?php screen_icon(); echo "<h2>" . get_current_theme() . "</h2>"; ?>
+	<?php if ( $updated == true ) : ?>
+	<div class="updated fade"><p><strong><?php _e( 'Your theme options have been saved', 'zenlite'); ?></strong></p></div>
 	<?php endif; ?>
-		
-	<form method="post" action="options.php" id="zenlite_options"><div>
-	<?php settings_fields( 'zenlite_options' ); ?>
-	<?php $stored_options = get_option('zenlite_theme_options');
+
+	<?php include_once 'donate.php';
+	if( $pagenow == 'themes.php' && $_GET['page'] == 'theme_options' ) :
+		if ( isset ( $_GET['tab'] ) ) $tab = $_GET['tab'];
+		else $tab = 'options';
+		switch ( $tab ) {
+			case 'options' :
+			zenlite_option_tabs($current= 'options');
+			zenite_do_options_tab();
+			break;
+
+			case 'guide' :
+			zenlite_option_tabs($current= 'guide');
+			zenlite_do_guide_tab();
+			break;
+
+			case 'post-formats' :
+			zenlite_option_tabs($current= 'post-formats');
+			zenlite_do_post_format_tab();
+			break;
+
+		}
+	endif;
+}
+
+// Do guide tab
+function zenlite_do_guide_tab() {
+	include_once get_template_directory() . '/library/zenlite-options-guide.php';
+}
+
+// Do general tab
+function zenlite_do_post_format_tab() {
+	include_once get_template_directory() . '/library/zenlite_post_formats.php';
+}
+
+// Do options tab
+function zenite_do_options_tab() {
+	global  $zenlite_all_theme_options;
+	?>
+	<form method="post" action="options.php" id="<?php echo 'zenlite';?>_options"><div>
+	<?php settings_fields( 'zenlite' . '_options' ); ?>
+	<?php $stored_options = get_option('zenlite' . '_theme_options');
 	?>
-	
+
 	<fieldset>
-	<legend><?php _e('Use the top navigation menu to display links to:',$textdomain); ?></legend>
+	<legend><?php _e('Use the non-custom navigation menu to display links to:','zenlite'); ?></legend>
 	<?php $option_name = 'menu_type';
-	theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?>
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
+	</fieldset>
+
+	<fieldset>
+	<legend><?php _e('Display site name &amp; tagline above header image?','zenlite'); ?></legend>
+	<?php $option_name = 'header_text';
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
+	</fieldset>
+
+	<fieldset>
+	<legend><?php _e('Display "Pages in this section" list?','zenlite'); ?></legend>
+	<?php $option_name = 'pagetree';
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
 	</fieldset>
-	
+
 	<fieldset>
-	<legend><?php _e('Display an author link on posts?',$textdomain); ?></legend>
+	<legend><?php _e('Display auto-generated title on Posts/Pages without titles?','zenlite'); ?></legend>
+	<?php $option_name = 'notitle_display';
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
+	</fieldset>
+
+	<fieldset>
+	<legend><?php _e('Display author name/link on Posts?','zenlite'); ?></legend>
 	<?php $option_name = 'author_display';
-	theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?>
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
 	</fieldset>
-	
+
 	<fieldset>
-	<legend><?php _e('Display allowed tags on comment form?',$textdomain); ?></legend>
+	<legend><?php _e('Display allowed tags on comment form?','zenlite'); ?></legend>
 	<?php $option_name = 'kses_display';
-	theme_options_sort( $all_theme_options[$option_name], $stored_options, $option_name);?>
+	theme_options_sort( $zenlite_all_theme_options[$option_name], $stored_options, $option_name);?>
 	</fieldset>
-	
-	<p class="submit"><input type="submit" class="button-primary" value="<?php _e('Update Theme', $textdomain) ?>" /></p>
-	
+
+	<p class="submit"><input type="submit" class="button-primary" value="<?php _e('Update Theme', 'zenlite') ?>" /></p>
+
 	</div></form>
 </div>
 	<?php
@@ -127,7 +156,7 @@ function theme_options_sort($option_input, $stored_options, $name) {
 		case 'radio':
 		theme_options_do_radio($option_input['options'], $stored_options, $name, $option_input['default']);
 		break;
-		
+
 		default:
 		break;
 	}
@@ -135,7 +164,6 @@ function theme_options_sort($option_input, $stored_options, $name) {
 
 // Radio button display
 function theme_options_do_radio($radio_options, $stored_options, $name, $default) {
-	global $textdomain;
 	if ( ! isset( $checked ) ) $checked = '';
 	foreach ( $radio_options as $option ) {
 		if ( isset( $stored_options[$name] ) ) {
@@ -146,7 +174,7 @@ function theme_options_do_radio($radio_options, $stored_options, $name, $default
 			if ( $option['value']  ==  $default ) $checked = 'checked="checked"';
 			else $checked = '';
 		}?>
-		<label class="description" for="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>"><input type="radio" id="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>" name="<?php echo $textdomain;?>_theme_options[<?php echo $name;?>]" value="<?php esc_attr_e( $option['value'] ); ?>" <?php echo $checked; ?> /> <?php echo $option['label']; ?></label> 
+		<label class="description" for="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>"><input type="radio" id="<?php echo $name;?>_<?php esc_attr_e( $option['value'] ); ?>" name="<?php echo 'zenlite';?>_theme_options[<?php echo $name;?>]" value="<?php esc_attr_e( $option['value'] ); ?>" <?php echo $checked; ?> /> <?php echo $option['label']; ?></label>
 		<?php
 	}
 }
@@ -154,8 +182,8 @@ function theme_options_do_radio($radio_options, $stored_options, $name, $default
 // Sanitize and validate inputs
 function theme_options_validate( $input ) {
 	$new_input = array();
-	global $all_theme_options;
-	$theme_option_names = array_keys($all_theme_options);
+	global $zenlite_all_theme_options;
+	$theme_option_names = array_keys($zenlite_all_theme_options);
 
 	foreach($theme_option_names as $theme_option_name) {
 		$option_type = $theme_option_name['type'];
@@ -163,7 +191,7 @@ function theme_options_validate( $input ) {
 			case 'checkbox':
 			$new_input[$theme_option_name] = ( $input[$theme_option_name] == 1 ? 1 : 0 );
 			break;
-			
+
 			case 'text':
 			$new_input[$theme_option_name] = wp_filter_nohtml_kses( $input[$theme_option_name] );
 			break;
@@ -171,7 +199,7 @@ function theme_options_validate( $input ) {
 			case 'textarea':
 			$new_input[$theme_option_name] = wp_filter_post_kses( $input[$theme_option_name] );
 			break;
-			
+
 			default:
 			$new_input[$theme_option_name] = $input[$theme_option_name];
 		}
diff --git a/wp-content/themes/zenlite/library/zenlite-options-guide.php b/wp-content/themes/zenlite/library/zenlite-options-guide.php
new file mode 100644
index 0000000000000000000000000000000000000000..52721795f6f8db860c60deb19d24b2415d5891a8
--- /dev/null
+++ b/wp-content/themes/zenlite/library/zenlite-options-guide.php
@@ -0,0 +1,32 @@
+<?php
+/* ZENLITE OPTIONS GUIDE
+*/
+?>
+<div id="zenlite-readme">
+
+<h3><?php _e('Option Documentation', 'zenlite');?></h3>
+
+<h4><?php _e('Display links to', 'zenlite');?></h4>
+<?php _e('If you are not using widgets or a custom menu in your main navigation menu, you can choose to display links to either your Pages or your Categories.', 'zenlite');?>
+<span class="default"><?php _e('Default: Pages', 'zenlite');?></span>
+
+<h4><?php _e('Display site name &amp; tagline', 'zenlite');?></h4>
+<?php _e("The theme will show your site's name and the tagline (as configured in Settings &rarr; General) above the header image. Leaving these fields blank will negatively impact on your searc engine optimisation (SEO). If you set this option to 'No', the site name and tagline will be hidden on graphical web browsers but will remain available to search engines.", 'zenlite');?>
+<span class="default"><?php _e('Default: Yes', 'zenlite');?></span>
+
+<h4><?php _e('Display "Pages in this section" list', 'zenlite');?></h4>
+<?php _e("Pages that belong to a Parent/Child tree will automatically show a sidebox containing links to all Pages in the tree. Select 'No' to remove this box from all Pages.", 'zenlite');?>
+<span class="default"><?php _e('Default: Yes', 'zenlite');?></span>
+
+<h4><?php _e('Display auto-generated title on Posts/Pages without titles', 'zenlite');?></h4>
+<?php _e("Titles in Pages and Posts are often used to create links within WordPress. If you forget to add a title to a document, this can cause problems in some situations. The theme will automatically generate a title ('No Title') on all such pages. If you do not want auto-generated titles, select 'No'. However, you may also see the Post Formats documentation for ways of hiding post titles on specific post formats.", 'zenlite');?>
+<span class="default"><?php _e('Default: Yes', 'zenlite');?></span>
+
+<h4><?php _e('Display author name/link on Posts', 'zenlite');?></h4>
+<?php _e("Pretty much what it says on the box. Select 'No' if you do not want the author's name (and a link to thr author's profile and list of posts) to appear on Posts.", 'zenlite');?>
+<span class="default"><?php _e('Default: Yes', 'zenlite');?></span>
+
+<h4><?php _e('Display allowed tags on comment form', 'zenlite');?></h4>
+<?php _e("The WordPress commenting system only allows a subset of markup tags to be used within comments. It can also display a list of the allowed tags below the comment box. Select 'No' if you do not want this list of allowed tags to be displayed.", 'zenlite');?>
+<span class="default"><?php _e('Default: Yes', 'zenlite');?></span>
+
diff --git a/wp-content/themes/zenlite/library/zenlite-theme-options-array.php b/wp-content/themes/zenlite/library/zenlite-theme-options-array.php
new file mode 100644
index 0000000000000000000000000000000000000000..4ec9398cb0cd405183320ce92c3f351e0846b148
--- /dev/null
+++ b/wp-content/themes/zenlite/library/zenlite-theme-options-array.php
@@ -0,0 +1,90 @@
+<?php
+
+// ZenLite theme options
+
+ $zenlite_all_theme_options = array(
+	'menu_type' => array(
+		'type' => 'radio',
+		'default' => 'pages',
+		'options' => array(
+			'1' => array(
+				'value' => 'pages',
+				'label' => __( 'Pages', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'cats',
+				'label' => __( 'Categories', 'zenlite' )
+			)
+		)
+	),
+	'header_text' => array(
+		'type' => 'radio',
+		'default' => 'yes',
+		'options' => array(
+			'1' => array(
+				'value' => 'yes',
+				'label' => __( 'Yes', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'no',
+				'label' => __( 'No', 'zenlite' )
+			)
+		)
+	),
+	'pagetree' => array(
+		'type' => 'radio',
+		'default' => 'yes',
+		'options' => array(
+			'1' => array(
+				'value' => 'yes',
+				'label' => __( 'Yes', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'no',
+				'label' => __( 'No', 'zenlite' )
+			)
+		)
+	),
+	'notitle_display' => array(
+		'type' => 'radio',
+		'default' => 'yes',
+		'options' => array(
+			'1' => array(
+				'value' => 'yes',
+				'label' => __( 'Yes', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'no',
+				'label' => __( 'No', 'zenlite' )
+			)
+		)
+	),
+	'author_display' => array(
+		'type' => 'radio',
+		'default' => 'yes',
+		'options' => array(
+			'1' => array(
+				'value' => 'yes',
+				'label' => __( 'Yes', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'no',
+				'label' => __( 'No', 'zenlite' )
+			)
+		)
+	),
+	'kses_display' => array(
+		'type' => 'radio',
+		'default' => 'yes',
+		'options' => array(
+			'1' => array(
+				'value' => 'yes',
+				'label' => __( 'Yes', 'zenlite' )
+			),
+			'2' => array(
+				'value' => 'no',
+				'label' => __( 'No', 'zenlite' )
+			)
+		)
+	)
+);
diff --git a/wp-content/themes/zenlite/library/zenlite_post_formats.php b/wp-content/themes/zenlite/library/zenlite_post_formats.php
new file mode 100644
index 0000000000000000000000000000000000000000..6a5c66b00dbe2e0566b53fc03d9b9472c4aa1904
--- /dev/null
+++ b/wp-content/themes/zenlite/library/zenlite_post_formats.php
@@ -0,0 +1,37 @@
+<?php
+/* ZENLITE POST FORMATS GUIDE
+*/
+?>
+<div id="zenlite-readme">
+
+<h3><?php _e('Post Formats Documentation', 'zenlite');?></h3>
+
+<h4><?php _e('Aside', 'zenlite');?></h4>
+<?php _e("Similar to a Facebook note update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default aside image will be shown.", 'zenlite');?>
+
+<h4><?php _e('Gallery', 'zenlite');?></h4>
+<?php _e("A gallery of images. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default gallery image will be used instead.", 'zenlite');?>
+
+<h4><?php _e('Link', 'zenlite');?></h4>
+<?php _e("A single link to another site. The link's text will be used as the post title along with a small link icon to indicate that it leads to an external page. In the single post view, the link's url (address) will also be shown. No other post content will be displayed.,", 'zenlite');?>
+
+<h4><?php _e('Image', 'zenlite');?></h4>
+<?php _e("A post containing a single attached image. If a featured image has been chosen, it will be shown as a link to the single post on all archive (post listing) pages. The gallery itself will only be shown on the single post view. If there is no featured image, a default image icon will be used instead.", 'zenlite');?>
+
+<h4><?php _e('Quote', 'zenlite');?></h4>
+<?php _e("A single quotation within <code>blockquote</code> tags.The quotation.post content will be displayed and styled on both archive and single post pages.", 'zenlite');?>
+
+<h4><?php _e('Status', 'zenlite');?></h4>
+<?php _e("Similar to a Twitter status update, these posts will not display a title - although a title will be made available for search engines etc. If a featured image has been chosen, it will be shown on all archive (post listing) pages along with the post's excerpt. If there is no featured image, a default status image will be shown.", 'zenlite');?>
+
+<h4><?php _e('Video', 'zenlite');?></h4>
+<?php _e("A post containing 1 or more videos. The video itself and any post content will only be shown on the single post view. This format does not support the display of featured images but a default video icon will be displayed on all archive pages.", 'zenlite');?>
+
+<h4><?php _e('Audio', 'zenlite');?></h4>
+<?php _e("A post containing 1 or more audio files. The audio file and any post content will only be shown on the single post view. This format does not support the display of featured images but a default audio icon will displayed on all archive pages.", 'zenlite');?>
+
+<h4><?php _e('Chat', 'zenlite');?></h4>
+<?php _e("A styled chat transcript. This format does not support the display of featured images but styling will be displayed on both archive and single post pages", 'zenlite');?>
+
+<h4><?php _e('Standard', 'zenlite');?></h4>
+<?php _e("A standard wordPress post.", 'zenlite');?>
diff --git a/wp-content/themes/zenlite/loop.php b/wp-content/themes/zenlite/loop.php
index 6b59ed295c9bccd8e8fc3c8d6461a2caa853ab2f..396c78ab7ebe68eaf3c10c1455a6ddd26fba9eb3 100644
--- a/wp-content/themes/zenlite/loop.php
+++ b/wp-content/themes/zenlite/loop.php
@@ -1,60 +1,25 @@
-<?php global $zenlite_options;?>
-
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
-
-<div <?php post_class();?> id="post-<?php the_ID();?>">
-<h2 class="post-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e('Post', 'zenlite');?> <?php the_ID(); ?> - <?php _e('permanent link', 'zenlite');?>"><?php the_title();?></a></h2>
-
-<ul class="meta">
-<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li>
-<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) 
-); ?></li>
+<?php if( is_paged() ) :?>
+<ul class="prevnext">
+<li class="next"><?php next_posts_link(__('Older Posts', 'zenlite') ); ?></li>
+<li class="prev"><?php previous_posts_link(__('Newer Posts', 'zenlite') );?></li>
 </ul>
-
-<div class="postcontent">
-<?php if( has_post_thumbnail() ) {
-	the_post_thumbnail(); 
-	the_excerpt();
-}
-elseif( post_password_required() ) the_excerpt();
-else the_content('', false,'');?>
-</div>
-
-<ul class="meta postfoot">
-
-<li class="more-link"><a href="<?php the_permalink();?>#more-<?php echo $post->ID;?>"><?php _e('Continue reading ', 'zenlite');the_title();?></a> &raquo;</li>
-
-<?php if('open' == $post->comment_status) : ?>
-<li class="comment-link"><?php comments_popup_link(
-__('Comment on ', 'zenlite') . get_the_title($id),
-__('1 Comment on ', 'zenlite') . get_the_title($id),
- __('% Comments on ', 'zenlite') . get_the_title($id),
-'postcomment',
-__('Comments are off for ', 'zenlite') . get_the_title($id)
-); ?> &raquo;</li>
-<?php endif;?>
-
-<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li class="author"><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?>
-
-<?php if(!is_category() ) :?>
-<li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li>
 <?php endif;?>
 
-<?php if( get_the_tag_list() && !is_tag() ) :?>
-<li class="tags"><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li>
-<?php endif;?>
+<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+<div <?php post_class();?> id="post-<?php the_ID();?>">
 
-</ul>
+<?php
+$format = get_post_format();
+if ( false === $format ) $format = 'standard';
+get_template_part( 'format', $format );
+?>
 
 </div>
-
-<?php endwhile; ?>
+<?php endwhile;?>
 
 <ul class="prevnext">
-<li><?php next_posts_link(__('&laquo; Older Posts', 'zenlite') ); ?></li>
-<li><?php previous_posts_link(__('Newer Posts &raquo;', 'zenlite') );?></li>
+<li class="next"><?php next_posts_link(__('Older Posts', 'zenlite') ); ?></li>
+<li class="prev"><?php previous_posts_link(__('Newer Posts', 'zenlite') );?></li>
 </ul>
 
 <?php endif;
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/page-without-comments.php b/wp-content/themes/zenlite/page-without-comments.php
index 408a557cb5247c10b8ec3468aaf78c2e218d4e7a..13e20af3d6df018d66dbab0534c6cdae8baa552a 100644
--- a/wp-content/themes/zenlite/page-without-comments.php
+++ b/wp-content/themes/zenlite/page-without-comments.php
@@ -2,47 +2,13 @@
 /*
 Template Name: Page without Comments
 */
-?>
-<?php get_header(); ?>
 
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+get_header();
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class(); ?>>
-
-<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link', 'zenlite');?>"><?php the_title(); ?></a></h2>
-<ul class="meta">
-<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li>
-</ul>
-
-<?php if( zenlite_page_tree($post) != '') :?>
-<div class="page-tree">
-<h3><?php _e('Pages in this section', 'zenlite');?></h3>
-<ul><?php echo zenlite_page_tree($post);?></ul>
+<?php get_template_part('format', 'page');?>
 </div>
-<?php endif;?>
-
-<div class="postcontent">
-<?php the_content(); ?>
-</div>
-
-<span class="clear" />
-
-<?php 
-$args = array(
-	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
-	'after' => '</div>',
-	'link_before' => '',
-	'link_after' => '',
-	'pagelink' => '%'
-);
-wp_link_pages($args);?>
-
-</div>
-
-<?php endwhile; ?>
-
-<?php  endif; ?>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php endwhile; endif;
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/page.php b/wp-content/themes/zenlite/page.php
index 44470edb574f7a5e5c069f3fe1e25740ca92010f..3062c7f3ee717efdcb6e9f889795cc98dd4dff9e 100644
--- a/wp-content/themes/zenlite/page.php
+++ b/wp-content/themes/zenlite/page.php
@@ -1,47 +1,9 @@
-<?php get_header(); ?>
-
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+<?php get_header();
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class(); ?>>
-
-<h2 class="post-title" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:', 'zenlite');?>"><?php the_title(); ?></a></h2>
-<ul class="meta">
-<li><?php edit_post_link(__('Edit', 'zenlite') ); ?></li>
-</ul>
-
-<?php if( zenlite_page_tree($post) != '' ) :?>
-<div class="page-tree">
-<h3><?php _e('Pages in this section', 'zenlite');?></h3>
-<ul><?php echo zenlite_page_tree($post);?></ul>
+<?php get_template_part('format', 'page');?>
 </div>
-<?php endif;?>
-
-<div class="postcontent">
-<?php the_content(); ?>
-</div>
-
-<span class="clear" />
-
-<?php 
-$args = array(
-	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
-	'after' => '</div>',
-	'link_before' => '',
-	'link_after' => '',
-	'pagelink' => '%'
-);
-wp_link_pages($args);?>
-
-</div>
-
-<?php if( have_comments() || 'open' == $post->comment_status ) : ?>
-<?php comments_template();?>
-<?php endif;?>
-
-<?php endwhile; ?>
-
-<?php  endif; ?>
 
-<?php get_footer(); ?>
\ No newline at end of file
+<?php endwhile; endif;
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/readme.txt b/wp-content/themes/zenlite/readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..14c4616e1f6b58b70dec53437738911135f95c93
--- /dev/null
+++ b/wp-content/themes/zenlite/readme.txt
@@ -0,0 +1,28 @@
+ZENLITE THEME
+
+THEME OPTIONS
+
+Use the top navigation menu to display links to: 
+	You can chose whether to display Pages or Categories in the top menu. The menu will use dropdowns for child pages or categories. Thiis option will not apply if you use a custom menu via Appearance>Menus.
+
+Display an author link on posts:
+	Hide the "Author: [name]" line at the bottom of each post.
+	
+Display allowed tags on comment form:
+	Hide the "You may use these XHTML tags and attribute" lines at the bottom of the comment form on Posts and Pages.
+	
+FEATURED IMAGES & EXCERPTS
+ZenLite supports post thumbnails (featured images). Where a post has a featured image, the image will be displayed on all post listing pages along with an automatic post excerpt (currently set to the WordPress default of 55 words). If a post does not have a featured image, the post content will be used. To shorten this content on all post listing pages, use the <!--more--> tag in your posts.
+	
+
+CHILD THEMES
+This theme has been developed to support the creation of child themes. Wherever possible, do not customise this theme but create a child theme for your customisations instead. Customising this theme will cause you to lose all of your changes if/when you later upgrade the theme. A child theme will protect your changes but still allow you to upgrade the parent theme.
+
+See <http://codex.wordpress.org/Child_Themes> for further information.
+
+There some child themes available for this theme. See <http://quirm.net/themes/> for a full list. Bespoke/customised child themes can also be developed  for a moderate fee.
+
+SUPPORT
+Free support is available at <http://forum.quirm.net/>. You can also find free support at <http://wordpress.org/support/> but, due to the high traffic on the WordPress forums, I cannot guarantee that I will notice or answer your requests for assistance.
+
+Feedback & feature requests are also welcome at <http://forum.quirm.net/>.
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/search.php b/wp-content/themes/zenlite/search.php
index 0ab46bed558459fe2312e7ff1396197b3781bd43..7915ffc6ae3b62038b109c095b0be99faf0313cc 100644
--- a/wp-content/themes/zenlite/search.php
+++ b/wp-content/themes/zenlite/search.php
@@ -1,79 +1,41 @@
 <?php get_header();?>
 
-<div id="content">
-<div <?php post_class();?>>
 
-<h2 class="post-title"><?php _e('Search Results', 'zenlite');?></h2>
+<h1 class="post-title"><?php _e('Search Results', 'zenlite');?></h1>
 
 <?php get_search_form();?>
 
-<?php 
-$my_tot_pages = $wp_query->max_num_pages;
-if($my_tot_pages ==1) $my_tot_pages.= __(' page', 'zenlite');
-else $my_tot_pages .= __(' pages', 'zenlite');
-$my_curr_page = $paged;
-if($my_curr_page =='') $my_curr_page = 1;
-$my_searchterm = trim(get_search_query());?>
-<p><?php _e('You searched for', 'zenlite');?> <em><?php echo $my_searchterm;?></em>.<br />
+<?php
+$zenlite_tot_pages = $wp_query->max_num_pages;
+if($zenlite_tot_pages ==1) $zenlite_tot_pages.= __(' page', 'zenlite');
+else $zenlite_tot_pages .= __(' pages', 'zenlite');
+$zenlite_curr_page = $paged;
+if($zenlite_curr_page =='') $zenlite_curr_page = 1;
+$zenlite_searchterm = trim(get_search_query());?>
+<p><?php _e('You searched for', 'zenlite');?> <em><?php echo $zenlite_searchterm;?></em>.<br />
 
 <?php if (have_posts()) : ?>
-<?php _e('Displaying page', 'zenlite');?> <?php echo $my_curr_page;?> <?php _e('of', 'zenlite');?> <?php echo $my_tot_pages;?> <?php _e('of results', 'zenlite');?>:</p>
+<?php _e('Displaying page', 'zenlite');?> <?php echo $zenlite_curr_page;?> <?php _e('of', 'zenlite');?> <?php echo $zenlite_tot_pages;?> <?php _e('of results', 'zenlite');?>:</p>
 
 <ul class="result-list">
 
 <?php while (have_posts()) : the_post(); ?>
-<li><?php if( has_post_thumbnail() ) the_post_thumbnail(); ?>
-<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
-
-<ul class="meta">
-
-<?php if($post->post_type == 'post') :?>
-<li><?php the_time(__('F j, Y', 'zenlite')); ?> <?php the_time(); ?></li>
-<li><?php edit_post_link(sprintf( __('Edit %1$s', 'zenlite'), get_the_title() ) 
-); ?></li>
-<?php endif;?>
-
-<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li class="author"><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?>
-
-<?php if($post->post_type == 'post') :?>
-
-<li><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li>
-
-<?php if(get_the_tag_list()) :?>
-<li><?php _e('Tags:', 'zenlite');?> <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li><?php endif;?>
-
-<?php endif;?>
-</ul>
-
-<ul class="meta postfoot">
-
-<li><a href="<?php the_permalink();?>"><?php _e('Read ', 'zenlite'); the_title(); ?></a> &raquo;</li>
-
-<?php if('open' == $post->comment_status) : ?>
-<li class="comment-link"><?php comments_popup_link(
-	__('Comment on ', 'zenlite') . get_the_title($id),
-	__('1 Comment on ', 'zenlite') . get_the_title($id),
-	 __('% Comments on ', 'zenlite') . get_the_title($id),
-	'postcomment',
-	__('Comments are off for ', 'zenlite') . get_the_title($id)
-); ?> &raquo;</li>
-<?php endif;?>
-
-</ul>
-
-</li>
+<li <?php post_class();?>><?php
+$format = get_post_format();
+if( $post->post_type == 'page' ) $format = 'page';
+elseif ( false === $format ) $format = 'standard';
+get_template_part( 'format', $format );
+?></li>
 <?php endwhile; ?>
 </ul>
 
 <ul class="prevnext">
-<li><?php next_posts_link(__('&laquo; Older Posts', 'zenlite') ); ?></li>
-<li><?php previous_posts_link(__('Newer Posts &raquo;', 'zenlite') );?></li>
+<li class="next"><?php next_posts_link(__('Older Posts', 'zenlite') ); ?></li>
+<li class="prev"><?php previous_posts_link(__('Newer Posts', 'zenlite') );?></li>
 </ul>
 
 <?php else : ?>
-<span class="sorry">Sorry - I couldn't find anything on '<em><?php echo $my_searchterm; ?></em>'.</span></p>
+<span class="sorry"><?php printf( __('Sorry - I couldn\'t find anything on %1$s%2$s%3$s', 'zenlite'), '<span>', $zenlite_searchterm, '</span>');?></p>
 <?php endif; ?>
 
-</div>
-
-<?php get_footer();?>
\ No newline at end of file
+<?php get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/searchform.php b/wp-content/themes/zenlite/searchform.php
index f2be1735c4e2ca0a4b6bb8db05a1e0c9e6d27edc..55c544ea3567cb00a68a6981da05a97fd16e6f3a 100644
--- a/wp-content/themes/zenlite/searchform.php
+++ b/wp-content/themes/zenlite/searchform.php
@@ -1,6 +1,6 @@
-<form method="get" id="searchform" action="<?php bloginfo('url'); ?>">
+<form method="get" id="searchform" action="<?php echo home_url(); ?>">
 <div>
-<label for="s" class="offset"><?php _e('Keyword(s)', 'zenlite');?></label> <input class="text" type="text" value=" " name="s" id="s" /> 
+<label for="s" class="offset"><?php _e('Keyword(s)', 'zenlite');?></label> <input class="text" type="text" value=" " name="s" id="s" />
 <input type="submit" class="submit button" name="submit" value="<?php _e('Search', 'zenlite');?>" />
 </div>
 </form>
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/sidebar.php b/wp-content/themes/zenlite/sidebar.php
index 66fb0c35ffaac47bdae6fdbfb13e812ec750e91e..a3ef1e8a4e4f6a9a552cf57a3c57e3aac51bf3e1 100644
--- a/wp-content/themes/zenlite/sidebar.php
+++ b/wp-content/themes/zenlite/sidebar.php
@@ -1,11 +1,10 @@
 <?php global $zenlite_options;?>
 
-<div class="sidebar">
-<?php if( is_active_sidebar( 'main-menu') ) echo "<ul>\n";?>
+<div class="navbar">
 
 <?php if (!dynamic_sidebar( 'Main menu' ) ) : ?>
 
-<?php 
+<?php
 $args = array(
 	'theme_location' => 'primary',
 	'container' => ''
@@ -15,5 +14,6 @@ wp_nav_menu( $args );
 ?>
 
 <?php endif; ?>
-<?php if( is_active_sidebar( 'main-menu') ) echo "</ul>\n";?>
-</div>
+
+<!--[if lte IE 7]><span class="clear"></span><![endif]-->
+</div>
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/single.php b/wp-content/themes/zenlite/single.php
index 7df3c258457846d6d03940fc4fd9e0256367f83a..f9f5c8b3f3151aa518e5477dd9cde9d4533f410b 100644
--- a/wp-content/themes/zenlite/single.php
+++ b/wp-content/themes/zenlite/single.php
@@ -1,47 +1,18 @@
-<?php get_header(); ?>
+<?php get_header();
 
-<?php global $zenlite_options;?>
-
-<div id="content">
-
-<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+if (have_posts()) : while (have_posts()) : the_post(); ?>
 
 <div <?php post_class();?>id="post-<?php the_ID();?>">
 
-<h2 class="post-title"><?php the_title();?></h2>
-
-<ul class="meta">
-<li><?php the_time(__('F j, Y'), 'zenlite'); ?> <?php the_time(); ?></li>
-<li><?php edit_post_link('Edit'); ?></li>
-</ul>
-
-<div class="postcontent">
-<?php the_content(); ?>
-</div>
-
-<?php 
-$args = array(
-	'before' => '<div class="pagelist">' . __('Pages:', 'zenlite'),
-	'after' => '</div>',
-	'link_before' => '',
-	'link_after' => '',
-	'pagelink' => '%'
-);
-wp_link_pages($args);?>
-
-<ul class="meta postfoot">
-<?php if( !isset( $zenlite_options['author_display'] ) || $zenlite_options['author_display'] != 'no') :?><li><?php _e('Author:', 'zenlite');?> <?php the_author_posts_link(); ?></li><?php endif;?>
-<li>Filed under: <ul><li><?php the_category(',</li> <li>') ?></li></ul></li>
-<?php if(get_the_tag_list()) :?>
-<li>Tags: <?php the_tags('<ul><li>',',</li> <li>','</li></ul>');?></li>
-<?php endif;?>
-</ul>
+<?php
+$format = get_post_format();
+if ( false === $format ) $format = 'standard';
+get_template_part( 'format', $format );?>
 
 </div>
 <?php comments_template();?>
 
 <?php endwhile; ?>
 
-<?php  endif; ?>
-
-<?php get_footer(); ?>
+<?php  endif;
+get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/style.css b/wp-content/themes/zenlite/style.css
index e84ef646b91eebf7a5da9b4680e00c6a8a124bb7..b970b34b7446810ae7ccabaa2dd5b3e3e5208e3b 100644
--- a/wp-content/themes/zenlite/style.css
+++ b/wp-content/themes/zenlite/style.css
@@ -1,15 +1,36 @@
 /*  
 Theme Name:ZenLite
-Version: 3.61
+Version: 4.4
 Theme URI: http://quirm.net/zenlite/
-Description: A minimalistic single column design with a widget-ready horizontal navigation menu for listing Pages, Categories or a custom menu. Includes additional templates for archives, categories, author lists, pages without comments, images, attachments and search results. Thickbox enabled image template. Customisable header and background images. Additional theme options. Translation-ready. Suitable for WordPress 3.0 and above. Support available at http://forum.quirm.net/
-
+Description: A minimalistic single column design with a widget-ready horizontal navigation menu for listing Pages, Categories or a custom menu. Includes additional templates for archives, categories, author lists, pages without comments, images, attachments and search results. Thickbox enabled image template. Customisable header and background images. Post format support. Additional theme options. Translation-ready and child-theme friendly. Suitable for WordPress 3.1 and above. Support available at http://forum.quirm.net/
 Author: Mel Pedley
-Author URI: http://www.blackwidows.co.uk
-Tags: one-column, custom-header, light, flexible-width, theme-options, translation-ready, threaded-comments
+Author URI: http://blackwidows.co.uk
+Tags: one-column, custom-header, custom-background, custom-menu, light, white, flexible-width, theme-options, translation-ready, threaded-comments, editor-style
+
+License: GNU General Public License v2
+License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
+*/
+
+/*  Copyright 2009-2011  Mel P.  (email : esmi@quirm.net)
 
-Distributed under the terms of the GNU General Public License
+This program is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License version 2,
+as published by the Free Software Foundation.
 
+You may NOT assume that you can use any other version of the GPL.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
+USA
+
+The license for this software can also likely be found here:
+http://www.gnu.org/licenses/gpl-2.0.html
 */
 
 @import url(layout.css);
@@ -28,5 +49,9 @@ They are appropriately specified in layout.css - but the wordpress.org uploader
 .alignright {
 	float: right;
 }
+.wp-caption-text {
+	margin-top:0;
+	padding-top:0;
+}
 */
 
diff --git a/wp-content/themes/zenlite/tag.php b/wp-content/themes/zenlite/tag.php
index df645ec9b43dc4643d39ed6972fad223d9c8f067..1bcf628b80ba1414b26536a6fa1602949d68e3ab 100644
--- a/wp-content/themes/zenlite/tag.php
+++ b/wp-content/themes/zenlite/tag.php
@@ -1,6 +1,8 @@
 <?php
 get_header();
 
+if( !is_paged() ) wp_tag_cloud('format=list&unit=em&largest=2.5&smallest=.9em&number=0');
+
 get_template_part( 'loop', 'tag' );
 
 get_footer();
\ No newline at end of file
diff --git a/wp-content/themes/zenlite/thickbox.css b/wp-content/themes/zenlite/thickbox.css
new file mode 100644
index 0000000000000000000000000000000000000000..d745372465dc9464307ef9b8b28e5b5860ca70e6
--- /dev/null
+++ b/wp-content/themes/zenlite/thickbox.css
@@ -0,0 +1,16 @@
+/* Thickbox */
+#TB_window {
+	background:#111 !important;
+	border-color:#000 !important;
+	color:#FFEEDB !important;
+}
+a#TB_closeWindowButton img {
+	border:1px solid #000;
+}
+a#TB_closeWindowButton:hover img,a#TB_closeWindowButton:active img,
+a#TB_closeWindowButton:hover img:focus {
+	border-color:#ED7409;
+}
+#TB_window img#TB_Image {
+	border-color:#000 #222 !important;
+}