function floatText() {
	var content = document.getElementById('container');
	var contHeight = content.offsetHeight;
	var strHeight = contHeight+10;
	var strHeight = strHeight+'px'
	document.getElementById('float').style.marginTop=strHeight;
}