<!DOCTYPE html><html lang="en-GB"><head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<title>Homeschool Guru – Your go to place for home education tips and tricks</title>

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js" src="">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.remove(); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[i].remove();
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
						+ '//' + window.location.hostname;
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9ob21lc2Nob29sZ3VydS5vcmc%3D"
		+ "&wpcomid=172593163"
		+ "&time=1587074719";
	document.body.appendChild( iframe );
}, false );
</script>
<link rel="dns-prefetch" href="//s1.wp.com">
<link rel="dns-prefetch" href="//s2.wp.com">
<link rel="dns-prefetch" href="//professionalwritingserviceorg.wordpress.com">
<link rel="dns-prefetch" href="//s0.wp.com">
<link rel="dns-prefetch" href="//wordpress.com">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<link rel="alternate" type="application/rss+xml" title="Homeschool Guru » Feed" href="/feed./feed//">
<link rel="alternate" type="application/rss+xml" title="Homeschool Guru » Comments Feed" href="/comments/feed./comments/feed//">
	<script type="text/javascript" src="">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
			<script type="text/javascript" src="">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s0.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1582709031h&ver=5.4"}};
			/*! This file is auto-generated */
			!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
		</script>
		<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
	<link rel="stylesheet" id="all-css-0-1" href="https://s0.wp.com/_static/??-eJylU+1uwjAMfKGlocAG+zHxLP3wOkM+qtih6tvPbWDqyhhIVaUotnN31tXWXasq7xgcaxtVa2KDjnTXVt4qsmign0VZRfSiJ7Ar5jMaowgZFNTI6JoLm95t3lfybbWwWO90jcSX+12yJkpYQmikEkDvsn2W6zKiqXVpfHVSBstQhF4T9waW0/AX2GdoRhTpI3BbDPCi95FVE7B+upMZRSgGr+gB/LG5QitJT0xJIdl8RugWkMJZ3gsuOq5956bMf5YWSF39YLRg0EFSmWfvClT+4muerVdZrsaZTRypkCWDx5+/oM3ksBHeqRnz7I3AZLeGSZS8bQseXlhRKsDI+Dn+D5aWsCzbAERKTovRqnFub3fyl5wdqKW5E0hEs0yConaeUdD0cxkKB/uRv+7ftut9vlkdvwHPTIri?cssminify=yes" type="text/css" media="all">
<style id="wp-block-library-inline-css">
.has-text-align-justify {
	text-align:justify;
}
</style>
<link rel="stylesheet" id="print-css-1-1" href="https://s1.wp.com/wp-content/themes/pub/varia/print.css?m=1571655471h&amp;cssminify=yes" type="text/css" media="print">
<link rel="stylesheet" id="all-css-2-1" href="https://s0.wp.com/_static/??-eJx9i0EOwjAMwD5EiHrYgAPiLV0VuqC0qdp0E79niAsIxM2WbFwLBM1G2dBmStSw9AlnWqhis7vQPrS2w9/Z4it75BxeKawlaPoaUociPXJuGElBNHhjzR8CV/Fc/62VJtG4YcStetPndElnNxzH02Fwo7s9AI1vTss=?cssminify=yes" type="text/css" media="all">
<link crossorigin="anonymous" rel="stylesheet" id="hever-fonts-css" href="https://fonts.googleapis.com/css?family=PT%2BSans%3A400%2C400i%2C700%2C700i&amp;subset=latin%2Clatin-ext" media="all">
<link rel="stylesheet" id="all-css-4-1" href="https://s2.wp.com/_static/??-eJx9kNEKwjAMRX/IGoducw/it7S1a6NdW5ZU8e/tYENlMPKQBM7NvQReSegY2AQGdmYwBCkrcOZpRiB+e7PXRDv4wYYsks8WA4HUjDEoOX6nFb6wffZeELIR5oaMwc5XoD12h1InsD4qWZjJlYq5ZNSgvAyPrQwpEoveSyx5nRzL4aVvqShqLF4+2vi/rETzV9ySbwKuw6Wqz03X1lVT3T/viXdM?cssminify=yes" type="text/css" media="all">
<style id="jetpack-global-styles-frontend-style-inline-css">
@import url('https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,bolditalic|Playfair Display:regular,bold,italic,bolditalic|');:root { --font-headings: Playfair Display; --font-base: Roboto; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<script type="text/javascript" src=""></script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://professionalwritingserviceorg.wordpress.com/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://s1.wp.com/wp-includes/wlwmanifest.xml"> 
<meta name="generator" content="WordPress.com">
<link rel="canonical" href="/">
<link rel="shortlink" href="https://wp.me/PbGbmH-2D">
		<!-- Custom Logo: hide header text -->
		<style id="custom-logo-css" type="text/css">
			.site-title, .site-description {
				position: absolute;
				clip: rect(1px, 1px, 1px, 1px);
			}
		</style>
		<link rel="alternate" type="application/json+oembed" href="https://public-api.wordpress.com/oembed/?format=json&amp;url=https%3A%2F%2Fhomeschoolguru.org%2F&amp;for=wpcom-auto-discovery"><link rel="alternate" type="application/xml+oembed" href="https://public-api.wordpress.com/oembed/?format=xml&amp;url=https%3A%2F%2Fhomeschoolguru.org%2F&amp;for=wpcom-auto-discovery">
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website">
<meta property="og:title" content="Homeschool Guru">
<meta property="og:description" content="Your go to place for home education tips and tricks">
<meta property="og:url" content="/">
<meta property="og:site_name" content="Homeschool Guru">

<meta property="og:image:width" content="970">
<meta property="og:image:height" content="646">
<meta property="og:locale" content="en_GB">
<meta name="twitter:site" content="@wordpressdotcom">
<meta name="twitter:text:title" content="Homeschool Guru">
<meta name="twitter:card" content="summary">


<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="/osd.xml" title="Homeschool Guru">
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com">
<meta name="application-name" content="Homeschool Guru"><meta name="msapplication-window" content="width=device-width;height=device-height"><meta name="msapplication-tooltip" content="Your go to place for home education tips and tricks"><meta name="msapplication-task" content="name=Subscribe;action-uri=/feed/;icon-uri=https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220-1.png?w=16"><meta name="msapplication-task" content="name=Sign up for a free blog;action-uri=http://wordpress.com/signup/;icon-uri=https://s1.wp.com/i/favicon.ico"><meta name="msapplication-task" content="name=WordPress.com Support;action-uri=http://support.wordpress.com/;icon-uri=https://s1.wp.com/i/favicon.ico"><meta name="msapplication-task" content="name=WordPress.com Forums;action-uri=http://forums.wordpress.com/;icon-uri=https://s1.wp.com/i/favicon.ico"><meta name="description" content="Homeschool Guru educating mindfully ~ living responsibly ~ doing it differently 'Education is an admirable thing, but...nothing that is worth knowing can be taught.' Oscar Wilde Listed on Feedspot's Top 100 Home School Blogs Message for parents homeschooling during the COVID-19 lockdown. Learning Travel Activities Money Food Wellbeing About Me Welcome to Homeschool Guru! I'm…">
<link rel="icon" href="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220-1.png?w=32" sizes="32x32">
<link rel="icon" href="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220-1.png?w=192" sizes="192x192">
<link rel="apple-touch-icon" href="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220-1.png?w=180">

</head>

<body class="home page-template-default page page-id-163 wp-embed-responsive customizer-styles-applied singular image-filters-enabled highlander-enabled highlander-light">

	
<div id="page" class="site">
	<a class="skip-link screen-reader-text" href="#content">Skip to content</a>

	
		<header id="masthead" class="site-header responsive-max-width">

			

			<p class="site-title"><a href="/" rel="home">Homeschool Guru</a></p>
	
		<p class="site-description">
			Your go to place for home education tips and tricks		</p>

			
			
		</header><!-- #masthead -->

	
	<div id="content" class="site-content">

	<section id="primary" class="content-area">
		<main id="main" class="site-main">

			
<article id="post-163" class="post-163 page type-page status-publish hentry entry">

	<header class="entry-header responsive-max-width">
		

	</header>

	<div class="entry-content">
		
<div class="wp-block-cover has-background-gradient alignfull" style="background-image:url('https://professionalwritingserviceorg.files.wordpress.com/2020/02/tips-kilometerregistratie-e1583042051951.jpg');background-position:50% 68%;min-height:444px;"><div class="wp-block-cover__inner-container">
<h1 class="has-foreground-dark-color has-text-color has-text-align-center">Homeschool Guru</h1>



<p style="font-size:25.45px;" class="has-text-color has-text-align-center has-foreground-dark-color"><strong>educating mindfully ~ living responsibly ~ doing it differently </strong></p>
</div></div>



<p class="has-text-align-center has-large-font-size">‘<em>Education is an admirable thing, but…nothing that is worth knowing can be taught</em>.’ </p>



<p class="has-text-align-center has-large-font-size">Oscar Wilde</p>



<p style="background-color:#2e9595;" class="has-text-color has-background has-text-align-center has-large-font-size has-background-color"> <strong></strong></p>



<div class="wp-block-media-text alignwide is-stacked-on-mobile" style="grid-template-columns:18% auto;"><figure class="wp-block-media-text__media"></figure><div class="wp-block-media-text__content">
<p>Message for parents homeschooling during the COVID-19 lockdown.</p>
</div></div>



<div class="wp-block-group alignfull has-background-light-background-color has-background"><div class="wp-block-group__inner-container">
<div class="wp-block-columns alignwide">
<div class="wp-block-column">
<figure class="wp-block-image size-large is-resized"><a href="/learning/"><img data-attachment-id="187" data-permalink="/homepage/open-book-library-education-read-159621/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/open-book-library-education-read-159621.jpg" data-orig-size="1731,1300" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="open-book-library-education-read-159621" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/open-book-library-education-read-159621.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/open-book-library-education-read-159621.jpg?w=750" src="" alt="" class="wp-image-187" width="289" height="289"></a></figure>



<p class="has-huge-font-size"><strong><a href="/learning/">Learning</a></strong></p>



<figure class="wp-block-image size-large is-resized"><a href="/travel/"><img data-attachment-id="214" data-permalink="/homepage/italy-4090933_960_720/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/italy-4090933_960_720.jpg" data-orig-size="960,640" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="italy-4090933_960_720" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/italy-4090933_960_720.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/italy-4090933_960_720.jpg?w=750" src="" alt="" class="wp-image-214" width="289" height="289"></a></figure>



<p class="has-huge-font-size"><strong><a href="/travel/">Travel</a></strong></p>
</div>



<div class="wp-block-column">
<figure class="wp-block-image size-large is-resized"><a href="/activities/"><img data-attachment-id="201" data-permalink="/homepage/kid_swimming_underwater_pool-832238-jpgd/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/kid_swimming_underwater_pool-832238.jpgd_.jpg" data-orig-size="1200,900" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="kid_swimming_underwater_pool-832238.jpg!d" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/kid_swimming_underwater_pool-832238.jpgd_.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/kid_swimming_underwater_pool-832238.jpgd_.jpg?w=750" src="" alt="" class="wp-image-201" width="289" height="289"></a></figure>



<p class="has-huge-font-size"><strong><a href="/activities/">Activities</a></strong></p>



<figure class="wp-block-image size-large is-resized"><a href="/https-homeschoolguru-org-2020-03-09-another-manic-monday-take-control-now/"><img data-attachment-id="215" data-permalink="/homepage/money-2180330__340/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/money-2180330__340.jpg" data-orig-size="510,340" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="money-2180330__340" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/money-2180330__340.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/money-2180330__340.jpg?w=510" src="" alt="" class="wp-image-215" width="289" height="289"></a></figure>



<p class="has-huge-font-size"><strong><a href="/https-homeschoolguru-org-2020-03-09-another-manic-monday-take-control-now/">Money</a></strong></p>
</div>



<div class="wp-block-column">
<div class="wp-block-image"><figure class="alignleft size-large is-resized"><a href="/food/"><img data-attachment-id="339" data-permalink="/homepage/dates-vegan-mushrooms-chickpeas-wallpaper-preview/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/03/dates-vegan-mushrooms-chickpeas-wallpaper-preview.jpg" data-orig-size="970,646" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="dates-vegan-mushrooms-chickpeas-wallpaper-preview" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/03/dates-vegan-mushrooms-chickpeas-wallpaper-preview.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/03/dates-vegan-mushrooms-chickpeas-wallpaper-preview.jpg?w=750" src="" alt="" class="wp-image-339" width="289" height="289"></a></figure></div>



<p class="has-huge-font-size"><strong><a href="/food/">Food</a></strong></p>



<figure class="wp-block-image size-large is-resized"><a href="/wellbeing/"><img data-attachment-id="47" data-permalink="/fitness-women-yoga-sports/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fitness-women-yoga-sports.jpg" data-orig-size="910,607" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="fitness-women-yoga-sports" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fitness-women-yoga-sports.jpg?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fitness-women-yoga-sports.jpg?w=750" src="" alt="" class="wp-image-47" width="289" height="289"></a></figure>



<p class="has-huge-font-size"><strong><a href="/wellbeing/">Wellbeing</a></strong></p>
</div>
</div>
</div></div>



<p class="has-large-font-size">Don’t be a stranger! Click <strong><a href="/contacthomeschoolguru/">here</a></strong> to subscribe to my FREE weekly newsletter, including FREE video tutorials on homeschool topics!</p>



<p></p>



<div class="wp-block-group alignfull has-background" style="background-color:#387676;"><div class="wp-block-group__inner-container">
<div class="wp-block-columns alignwide">
<div class="wp-block-column">
<div class="wp-block-image"><figure class="aligncenter size-large is-resized"><img data-attachment-id="33" data-permalink="/fullsizeoutput_51/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fullsizeoutput_51.jpeg" data-orig-size="1108,1661" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;2.4&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;LG-D855&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1497966042&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;3.97&quot;,&quot;iso&quot;:&quot;50&quot;,&quot;shutter_speed&quot;:&quot;0.0083333333333333&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="fullsizeoutput_51" data-image-description="" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fullsizeoutput_51.jpeg?w=200" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/fullsizeoutput_51.jpeg?w=683" src="" alt="" class="wp-image-33" width="212" height="317" srcset="" sizes="(max-width: 212px) 100vw, 212px"></figure></div>
</div>



<div class="wp-block-column">
<h4 class="has-background-color has-text-color">About Me</h4>



<p class="has-text-color has-background-color">Welcome to Homeschool Guru! I’m Anna, a former English teacher, examiner and now full-time homeschool mum. Follow me on Homeschool Guru for all my latest tips on raising a happy, healthy, homeschool family.  </p>
</div>



<div class="wp-block-column">
<h4 class="has-background-color has-text-color">Get in Touch</h4>



<p class="has-text-color has-background-color">Contact me to discuss your homeschooling journey, or for information regarding guest posts and collaborations: </p>



<p style="font-size:21px;" class="has-text-color has-background-color"><a href="/contacthomeschoolguru/">contact@homeschoolguru</a></p>
</div>
</div>
</div></div>



<div class="wp-block-cover has-background-dim" style="background-image:url('https://professionalwritingserviceorg.files.wordpress.com/2020/02/images.jpg?w=275');background-position:50% 50%;min-height:50px;"><div class="wp-block-cover__inner-container">
<p class="has-text-align-center has-huge-font-size"><a href="/358-2/">Long Reads</a></p>
</div></div>



<div class="wp-block-cover has-background-dim" style="background-image:url('https://professionalwritingserviceorg.files.wordpress.com/2020/03/unknown.png');background-position:50% 50%;min-height:50px;"><div class="wp-block-cover__inner-container">
<p class="has-text-align-center has-huge-font-size"><a href="/381-2/">Video Tutorials</a></p>
</div></div>



<div class="wp-block-cover has-background-dim" style="background-image:url('https://professionalwritingserviceorg.files.wordpress.com/2020/03/diary-the-note-notebook-pencil-preview.jpg');background-position:67% 56%;min-height:50px;"><div class="wp-block-cover__inner-container">
<p class="has-text-align-center has-huge-font-size"><a href="/526-2/">Consultancy</a></p>
</div></div>



<p></p>



<div class="wp-block-group alignfull"><div class="wp-block-group__inner-container">
<div class="wp-block-columns alignwide">
<div class="wp-block-column" style="flex-basis:100%;">
<div class="wp-block-group"><div class="wp-block-group__inner-container">
<figure class="wp-block-image size-large"><img data-attachment-id="139" data-permalink="/cropped-43353220-png/" data-orig-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220.png" data-orig-size="982,436" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="cropped-43353220.png" data-image-description="<p>https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220.png</p>
" data-medium-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220.png?w=300" data-large-file="https://professionalwritingserviceorg.files.wordpress.com/2020/02/cropped-43353220.png?w=750" src="" alt="" class="wp-image-139" srcset="" sizes="(max-width: 750px) 100vw, 750px"></figure>
</div></div>
</div>



<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:0;">
<p></p>
</div>
</div>



<div style="height:80px;" aria-hidden="true" class="wp-block-spacer desktop-only"></div>
</div></div>



<span id="more-163"></span>
<div id="jp-post-flair" class="sharedaddy sd-sharing-enabled"><div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-163" class="share-twitter sd-button share-icon" href="/?share=twitter" target="_blank" title="Click to share on Twitter"><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-163" class="share-facebook sd-button share-icon" href="/?share=facebook" target="_blank" title="Click to share on Facebook"><span>Facebook</span></a></li><li class="share-end"></li></ul></div></div></div></div>	</div><!-- .entry-content -->

	</article><!-- #post-163 -->

		</main><!-- #main -->
	</section><!-- #primary -->


	</div><!-- #content -->

		<footer id="colophon" class="site-footer responsive-max-width">
	
	<aside class="widget-area responsive-max-width" role="complementary" aria-label="Footer">
		<section id="blog_subscription-3" class="widget widget_blog_subscription jetpack_subscription_widget"><h2 class="widget-title"><label for="subscribe-field">Get Homeschool Guru updates direct to your inbox.</label></h2>
            <form action="https://subscribe.wordpress.com" method="post" accept-charset="utf-8" id="subscribe-blog">
									<p>Enter your email address to follow this blog and receive notifications of new posts by email.</p>
                    <p><input type="text" name="email" style="width: 95%; padding: 1px 10px" placeholder="Enter your email address" value="" id="subscribe-field"></p>
				
                <p>
                    <input type="hidden" name="action" value="subscribe">
                    <input type="hidden" name="blog_id" value="172593163">
                    <input type="hidden" name="source" value="/">
                    <input type="hidden" name="sub-type" value="widget">
                    <input type="hidden" name="redirect_fragment" value="blog_subscription-3">
					<input type="hidden" id="_wpnonce" name="_wpnonce" value="4477562a58">                    <button type="submit">
	                    Yes Please!                    </button>
                </p>
            </form>
			
</section><section id="google_translate_widget-3" class="widget widget_google_translate_widget"><h2 class="widget-title">Translate</h2><div id="google_translate_element"></div></section><section id="gravatar-7" class="widget widget_gravatar"><p><a href="/contacthomeschoolguru/"><img alt="" src="" class="avatar avatar-64 grav-widget-none" height="64" width="64"></a></p>
<p>I'm Anna, a former secondary teacher, examiner and now full-time homeschool mum. I can help you to find a happy, healthy homeschool routine that works for your family. Get in touch or subscribe to the newsletter today!</p>
</section><section id="blog_subscription-5" class="widget widget_blog_subscription jetpack_subscription_widget"><h2 class="widget-title"><label for="subscribe-field-2">Follow Blog via Email</label></h2>
            <form action="https://subscribe.wordpress.com" method="post" accept-charset="utf-8" id="subscribe-blog-2">
									<p>Enter your email address to follow this blog and receive notifications of new posts by email.</p>
                    <p><input type="text" name="email" style="width: 95%; padding: 1px 10px" placeholder="Enter your email address" value="" id="subscribe-field-2"></p>
				
                <p>
                    <input type="hidden" name="action" value="subscribe">
                    <input type="hidden" name="blog_id" value="172593163">
                    <input type="hidden" name="source" value="/">
                    <input type="hidden" name="sub-type" value="widget">
                    <input type="hidden" name="redirect_fragment" value="blog_subscription-5">
					<input type="hidden" id="_wpnonce" name="_wpnonce" value="4477562a58">                    <button type="submit">
	                    Follow Me!                    </button>
                </p>
            </form>
			
</section>	</aside><!-- .widget-area -->


		<div class="site-info">
										<a class="site-name" href="/" rel="home">Homeschool Guru</a><span class="comma">,</span>
											</div><!-- .site-info -->
	</footer><!-- #colophon -->

</div><!-- #page -->

<!--  -->
<script src=""></script>
<script src="">
var WPGroHo = {"my_hash":""};
</script>
<script type="text/javascript" src=""></script>

	<script src="">
		//initialize and attach hovercards to all gravatars
		jQuery( document ).ready( function( $ ) {

			if (typeof Gravatar === "undefined"){
				return;
			}

			if ( typeof Gravatar.init !== "function" ) {
				return;
			}			

			Gravatar.profile_cb = function( hash, id ) {
				WPGroHo.syncProfileData( hash, id );
			};
			Gravatar.my_hash = WPGroHo.my_hash;
			Gravatar.init( 'body', '#wp-admin-bar-my-account' );
		});
	</script>

		<div style="display:none">
	<div class="grofile-hash-map-8d46ab4672f7fb048ba33075693d4415">
	</div>
	</div>

	<div id="carousel-reblog-box">
		<form action="#" name="carousel-reblog">
			<textarea id="carousel-reblog-content" name="carousel-reblog-content" placeholder="Add your thoughts here... (optional)"></textarea>
			<label for="carousel-reblog-to-blog-id" id="carousel-reblog-lblogid">Post to</label>
			<select name="carousel-reblog-to-blog-id" id="carousel-reblog-to-blog-id">
						</select>

			<div class="submit">
				<span class="canceltext"><a href="#" class="cancel">Cancel</a></span>
				<input type="submit" name="carousel-reblog-submit" class="button" id="carousel-reblog-submit" value="Reblog Post">
				<input type="hidden" id="carousel-reblog-blog-id" value="172593163">
				<input type="hidden" id="carousel-reblog-blog-url" value="">
				<input type="hidden" id="carousel-reblog-blog-title" value="Homeschool Guru">
				<input type="hidden" id="carousel-reblog-post-url" value="">
				<input type="hidden" id="carousel-reblog-post-title" value="">
			</div>

			<input type="hidden" id="_wpnonce" name="_wpnonce" value="b1b156ff71"><input type="hidden" name="_wp_http_referer" value="/">		</form>

		<div class="arrow"></div>
	</div>

	<script type="text/javascript" src="">
		window.WPCOM_sharing_counts = {"https:\/\/homeschoolguru.org\/":163};
	</script>
				<link rel="stylesheet" id="all-css-0-2" href="https://s0.wp.com/_static/??/wp-content/plugins/gutenberg-blocks/jetpack-layout-grid/blocks/front.css,/wp-content/mu-plugins/carousel/jetpack-carousel.css?m=1583834955j&amp;cssminify=yes" type="text/css" media="all">
<script src="">
var comment_like_text = {"loading":"Loading..."};
</script>
<script src="">
var actionbardata = {"siteID":"172593163","siteName":"Homeschool Guru","siteURL":"https:\/\/homeschoolguru.org","icon":"<img alt='' src='https:\/\/professionalwritingserviceorg.files.wordpress.com\/2020\/02\/cropped-43353220-1.png?w=50' class='avatar avatar-50' height='50' width='50' \/>","canManageOptions":"","canCustomizeSite":"","isFollowing":"","themeSlug":"pub\/hever","signupURL":"https:\/\/wordpress.com\/start\/","loginURL":"https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fhomeschoolguru.org%2F&signup_flow=account&domain=homeschoolguru.org","themeURL":"https:\/\/wordpress.com\/theme\/hever\/","xhrURL":"https:\/\/homeschoolguru.org\/wp-admin\/admin-ajax.php","nonce":"65ce707f0d","isSingular":"1","isFolded":"","isLoggedIn":"","isMobile":"","subscribeNonce":"<input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"4477562a58\" \/>","referer":"https:\/\/homeschoolguru.org\/","canFollow":"1","feedID":"103851629","statusMessage":"","customizeLink":"https:\/\/professionalwritingserviceorg.wordpress.com\/wp-admin\/customize.php?url=https%3A%2F%2Fprofessionalwritingserviceorg.wordpress.com%2F","postID":"163","shortlink":"https:\/\/wp.me\/PbGbmH-2D","canEditPost":"","editLink":"https:\/\/wordpress.com\/page\/homeschoolguru.org\/163","statsLink":"https:\/\/wordpress.com\/stats\/post\/163\/homeschoolguru.org","i18n":{"view":"View site","follow":"Follow","following":"Following","edit":"Edit","login":"Log in","signup":"Sign up","customize":"Customise","report":"Report this content","themeInfo":"Get theme: Hever","shortlink":"Copy shortlink","copied":"Copied","followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/read\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","editSubs":"Manage subscriptions","viewReader":"View site in Reader","viewReadPost":"View post in Reader","subscribe":"Sign me up","enterEmail":"Enter your email address","followers":"Join 212 other followers","alreadyUser":"Already have a WordPress.com account? <a href=\"https:\/\/wordpress.com\/log-in?redirect_to=https%3A%2F%2Fhomeschoolguru.org%2F&signup_flow=account&domain=homeschoolguru.org\">Log in now.<\/a>","stats":"Statistics"}};
</script>
<script src="">
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/homeschoolguru.org\/wp-admin\/admin-ajax.php","nonce":"332e05566f","display_exif":"1","display_geo":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/professionalwritingserviceorg.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fhomeschoolguru.org%2F","blog_id":"172593163","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"local_comments_commenting_as":"<fieldset><label for=\"email\">Email (Required)<\/label> <input type=\"text\" name=\"email\" class=\"jp-carousel-comment-form-field jp-carousel-comment-form-text-field\" id=\"jp-carousel-comment-form-email-field\" \/><\/fieldset><fieldset><label for=\"author\">Name (Required)<\/label> <input type=\"text\" name=\"author\" class=\"jp-carousel-comment-form-field jp-carousel-comment-form-text-field\" id=\"jp-carousel-comment-form-author-field\" \/><\/fieldset><fieldset><label for=\"url\">Website<\/label> <input type=\"text\" name=\"url\" class=\"jp-carousel-comment-form-field jp-carousel-comment-form-text-field\" id=\"jp-carousel-comment-form-url-field\" \/><\/fieldset>","reblog":"Reblog","reblogged":"Reblogged","reblog_add_thoughts":"Add your thoughts here... (optional)","reblogging":"Reblogging...","post_reblog":"Post Reblog","stats_query_args":"blog=172593163&v=wpcom&tz=1&user_id=0&subd=professionalwritingserviceorg","is_public":"1","reblog_enabled":""};
</script>
<script src="">
var _wp_google_translate_widget = {"lang":"en-gb","layout":"0"};
</script>
<script type="text/javascript" src=""></script>
<script type="text/javascript" src="">
( 'fetch' in window ) || document.write( '<script src="https://s0.wp.com/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js?m=1573572739h&#038;ver=3.0.0"></scr' + 'ipt>' );( document.contains ) || document.write( '<script src="https://s1.wp.com/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js?m=1540208548h&#038;ver=3.42.0"></scr' + 'ipt>' );( window.DOMRect ) || document.write( '<script src="https://s0.wp.com/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js?m=1585663916h&#038;ver=3.42.0"></scr' + 'ipt>' );( window.URL && window.URL.prototype && window.URLSearchParams ) || document.write( '<script src="https://s2.wp.com/wp-includes/js/dist/vendor/wp-polyfill-url.min.js?m=1585663916h&#038;ver=3.6.4"></scr' + 'ipt>' );( window.FormData && window.FormData.prototype.keys ) || document.write( '<script src="https://s1.wp.com/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js?m=1550600082h&#038;ver=3.0.12"></scr' + 'ipt>' );( Element.prototype.matches && Element.prototype.closest ) || document.write( '<script src="https://s2.wp.com/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js?m=1540208548h&#038;ver=2.0.2"></scr' + 'ipt>' );
( window.URL && window.URL.prototype && window.URLSearchParams ) || document.write( '<script src="https://s2.wp.com/wp-content/plugins/gutenberg-core/7.8.1/vendor/wp-polyfill-url.min.7490158b.js?m=1586214842h&#038;ver=3.6.4"></scr' + 'ipt>' );
( window.DOMRect ) || document.write( '<script src="https://s1.wp.com/wp-content/plugins/gutenberg-core/7.8.1/vendor/wp-polyfill-dom-rect.7e21c103.js?m=1586214842h&#038;ver=3.42.0"></scr' + 'ipt>' );
</script>
<script src=""></script>
<script src="">
var sharing_js_options = {"lang":"en","counts":"1","is_stats_active":"1"};
</script>
<script type="text/javascript" src=""></script>
<script type="text/javascript" src="">
var windowOpen;
			jQuery( document.body ).on( 'click', 'a.share-twitter', function() {
				// If there's another sharing window open, close it.
				if ( 'undefined' !== typeof windowOpen ) {
					windowOpen.close();
				}
				windowOpen = window.open( jQuery( this ).attr( 'href' ), 'wpcomtwitter', 'menubar=1,resizable=1,width=600,height=350' );
				return false;
			});
var windowOpen;
			jQuery( document.body ).on( 'click', 'a.share-facebook', function() {
				// If there's another sharing window open, close it.
				if ( 'undefined' !== typeof windowOpen ) {
					windowOpen.close();
				}
				windowOpen = window.open( jQuery( this ).attr( 'href' ), 'wpcomfacebook', 'menubar=1,resizable=1,width=600,height=400' );
				return false;
			});
</script>
	<script src="">
	/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
	</script>
	<script type="text/javascript" src="">
// <![CDATA[
(function() {
try{
  if ( window.external &&'msIsSiteMode' in window.external) {
    if (window.external.msIsSiteMode()) {
      var jl = document.createElement('script');
      jl.type='text/javascript';
      jl.async=true;
      jl.src='/wp-content/plugins/ie-sitemode/custom-jumplist.php';
      var s = document.getElementsByTagName('script')[0];
      s.parentNode.insertBefore(jl, s);
    }
  }
}catch(e){}
})();
// ]]>
</script><script src="" type="text/javascript" async="" defer=""></script>
<script type="text/javascript" src="">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'172593163','blog_tz':'1','user_lang':'en-gb','blog_lang':'en-gb','user_id':'0'}]);
_stq.push(['view', {'blog':'172593163','v':'wpcom','tz':'1','user_id':'0','post':'163','subd':'professionalwritingserviceorg'}]);
_stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1TaVhzUzFMbjdWNHpwZGhTayxPSUFCMGNrd29+Smw0TDhnZmRTK0hlRi9QSGh6bi9GXVhBJWIlZlR5U1JMLU8/MkNtblkvY1ctQWQrXWNNWz9QOGFUaXYtMWVZUUc5d2xKaFFQOXZOMD9jUUQ2S1ljMUdDZixQTDBhUDBUVCVBNUd6TmRvcytoRTQwOGgwbS9fcDRYMHYuUjRXTlg5aUxLW092Ji1OZ0h6SVpwbTNdaWptbytSL3dBbFYvMHcmX3cwLkt5RHZyZXdDJVcsRDJ2WiVnaytheWI3MDdQV3RmLng/fFV8eEFUT0VsT3lVdXVnX25rbTVRWGg/XXh5TzFzU1BTXUI9als3LzRtbHJjTHJlMkpmM2ljP3N5M2lrSVtXOExyOUtS'}]);
_stq.push([ 'clickTrackerInit', '172593163', '163' ]);
	</script>

<script src="">
if ( 'object' === typeof wpcom_mobile_user_agent_info ) {

	wpcom_mobile_user_agent_info.init();
	var mobileStatsQueryString = "";
	
	if( false !== wpcom_mobile_user_agent_info.matchedPlatformName )
		mobileStatsQueryString += "&x_" + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
	
	if( false !== wpcom_mobile_user_agent_info.matchedUserAgentName )
		mobileStatsQueryString += "&x_" + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
	
	if( wpcom_mobile_user_agent_info.isIPad() )
		mobileStatsQueryString += "&x_" + 'ipad_views' + '=' + 'views';

	if( "" != mobileStatsQueryString ) {
		new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
	}
	
}
</script>

</body></html>