function initFooter(){
	var footer = $('div.bottom-hold');
	var footerPlace = $('div.footer-place');
	var h = footer.outerHeight();
	
	footer.css({marginTop:-h});
	footerPlace.css({height:h});
}

$(document).ready(function(){
	initFooter();
});

