$(document).ready(function(){
getHeight();
$(window).resize(function() {
getHeight()
});

function getHeight() {
	var windowHeight=$(window).height();
	var contentHeight=$('#innerbody').height();
	var footerHeight=279+116;
	if(contentHeight+footerHeight > windowHeight) {
	$('#footer').css('top',contentHeight+116);
	}
	else {
	$('#footer').css({'top':'auto','bottom':0});
	}
}
// Wunschliste aktualisieren
$.ajax({
	type:'POST',
    url: '/?eID=wunschliste',
    data: {
	eID: "wunschliste",	// die erstellte eID
	update: "current"	// Benutzereingabe
	},
    dataType: 'json',
    success: function(result) {
    if (result.myResult!='false') {
    $('#artikel').html(result.myResult);

    }}});

});
