		$(document).ready(function(){
			$.ajax({
				type: "GET",
				url: "/Components/Header.html",
				success: function(result) {
					$("div#Header").replaceWith(result);
				}
			});
			$.ajax({
				type: "GET",
				url: "/Components/MenuL.html",
				success: function(result) {
					$('div#MenuLinks').replaceWith(result);
				}
			});
			$.ajax({
				type: "GET",
				url: "/Components/Footer.html",
				success: function(result) {
					$('div#Footer').replaceWith(result);
				}
			});
		});