
var Id;

function hello()
{
	floatDiv = document.getElementById('floater');
	textDiv  = document.getElementById('floatText');
	floatDiv.style.display = "inline";
	textDiv.style.display = "inline";

	//fix for IE - can't handle the CSS property 'opacity' so we have to use filter.
	if(checkIt('msie'))
	{
		floatDiv.style.filter = 'alpha(opacity=70)';
	}

	//fix for IE - it doesn't know the left position of something that's outside the overflow margin it appears
	if (floatDiv.style.left == "")
	{
		floatDiv.style.left = "-314px";
	}
	leftPos = parseInt(floatDiv.style.left);
	if (leftPos < -4)
	{
		floatDiv.style.left = (leftPos + 6) + "px";
		textDiv.style.left  = (leftPos + 6) + "px";
		x = window.setTimeout("hello();",0);
	}
	else
	{
		window.clearTimeout(Id);
	}
}

