// JavaScript Document
function floatText() {
	var content = document.getElementById('container');
	var contHeight = content.offsetHeight;
	var strHeight = contHeight+'px'
	document.getElementById('floattext').style.paddingTop=strHeight;
}