/* basically this script will add some demo content for the user to get an idea of what a theme woudld look like if content was added to the left sidebar. */
/* It is easily turned off in the Page Inspector under the setting "Example Content" */
jQuery(document).ready(function(jQuery){	
	jQuery(".third-column").prepend('<div class="demo-left"></div>');
	if (jQuery('.demo-left').length){
		jQuery('.demo-left').prepend('<div class="leftnew pad-20"><h3>Example Content:</h3><p>This is just some sample content. You can remove this demo content via the Page Inspector and add <strong>YOUR</strong> content.</p><p>To add your content here you will need to use the Snippet called "H5 Left Column" that was included in your download.</p><h2>Top Stories</h2><ul class="vertical-list"><li><a href="#">World</a></li><li><a href="#">Religion</a></li><li><a href="#">Business</a></li><li><a href="#">Politics</a></li><li><a href="#">Sports</a></li><li><a href="#">Tech</a></li><li><a href="#">Opinion</a></li></ul></div>');	
}	
});

