// JScript source code
function hideComingSoon()
{
	$("ComingSoonBalloon").style.display='none';
}

function showComingSoon(id)
{
	var BalloonLeft,BalloonTop,left,length;
	left = $(id).getLeft();


	BalloonLeft = (left-110);
	BalloonTop = ($(id).getTop()-110);
	
	
	
	$("ComingSoonBalloon").style.left = BalloonLeft+'px';
	$("ComingSoonBalloon").style.top = BalloonTop+'px';
	$("ComingSoonBalloon").style.display = 'block';
		
	if (navigator.userAgent.indexOf("MSIE")>=0)
	{
		correctPNG(); //This fixes the PNG in IE.
	}

}
