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