function getAbsTop(o)
{
	//var o = this;
	var val = 0;
	var i=0;
	if(o.nodeName)
	{
		while ( o.nodeName != "BODY" )
		{
			i++;
			val += parseInt(o.offsetTop);
			o = o.offsetParent;
		}
	}else{
		alert('IESucks!');
	}
	return val;
}