$(document).ready(function(){
	$.ajax({
		type: "GET",
		url: "/Components/Footer.html",
		cache: false,
		success: function(result) {
			$('div#Footer').html(result);
		}
	});
	
	$.ajax({
		type: "GET",
		url: "/4dcgi/Header",
		success: function(result) {
			$('table#headertable').replaceWith(result);
		}
	});
	
	$.ajax({
		type: "GET",
		url: "/4dcgi/ProdList/iFavoriten/?Suchb=Favoriten&",
		success: function(result) {
			$('div#Favoriten').replaceWith(result);
		}
	});
	
});
