// this code is run on every page load once all elemnts have been loaded to the DOM
jQuery(document).ready(function() {
	jQuery("#headerHome").click(function () {
		window.location = "home.html";
	});

	jQuery("#leftNavHome").click(function () {
		window.location = "home.html";
	});
	
});