// JavaScript Document

function adjust(){
	var height = document.getElementById('body').offsetHeight;
	var offset = 465 - height;
	$("#body").animate({
		marginTop: ""+offset+"px"
	},500);
}