function moveFooter(idnav)
{
	if(idnav==2)
		setTimeout("displayProduct()",1000);
	setTimeout("movement()",9000);
}
function movement()
{
	var otherEl = $('footer');
	otherEl.tween('bottom', '-80px');
}
function displayProduct()
{
	document.getElementById('blockProdukte').style.display='block';
}

function displayHomeHero()
{
	document.getElementById('HomeHero').style.display='block';
}