timer=0;
function showForm() {
	clearTimeout(timer);
	refObj = document.getElementById('formteaser');
	tObj = document.getElementById('formcontainer');
	pos=findPos(refObj);
	//tObj.style.top=pos[1]+'px';
	//tObj.style.left=(pos[0]+150) + 'px';
	tObj.style.display='block';
	tObj.style.top='81px';
	tObj.style.left='400px';

}

function hideForm() {
	timer = setTimeout("hide()",500);
}
function hide() {
	tObj = document.getElementById('formcontainer');
	tObj.style.display='none';
}
function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
		curleft = obj.offsetLeft
		curtop = obj.offsetTop
		while (obj = obj.offsetParent) {
			curleft += obj.offsetLeft
			curtop += obj.offsetTop
		}
	}
	return [curleft,curtop];
}