function doGrowFromDown(x,y,v,z){
	if (z != 0) {
		var ytop =  parseInt($('#' + v).css("top"))-z;
	}else{
		var ytop =  parseInt($('#' + v).css("top"))-y;
	}
	var xleft = parseInt($('#' + v).css("left")) - (x/2);
	$('#' + v).animate({ height: y, width: x, top: ytop, left: xleft}, 5000, function(){
	    if (x == 0 && y == 0) {
			$('#' + v).hide();
		}
		$('#teaser').show("slow");
		$('#impressum').show();
	});
}
