//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
///TOOl TIP //////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////

var ToolTips= new Array();


ToolTips['home']="Go to the Haas Builders home page";
ToolTips['client']="Existing clients login to view your project";
ToolTips['portfolio']="View past projects";
ToolTips['sample']="See how our client rooms work";
ToolTips['about']="Meet Haas Builders";
ToolTips['contact']="Contact Haas Builders";


function ToolTip(which,sender)
{  	
	if(!ToolTips[which])
	    return;
	var x=0;
	var y=0;
	var p=sender;

	while(p)
	{
	    x+=p.offsetLeft;
		y+=p.offsetTop;
		p=p.offsetParent;
	}
	if(document.body.scrollLeft>x)
		x=document.body.scrollLeft;

//	tooltip.style.width='auto';
  tooltip.style.display='inline';

    tooltip.innerHTML=ToolTips[which];
//	if(tooltip.offsetWidth>500)
//		tooltip.style.width='500px';
//	if(tooltip.offsetWidth<100 && tooltip.offsetHeight>60)
//		tooltip.style.width='500px';

//	if(x+tooltip.offsetWidth>screen.width)
//		x=screen.width-tooltip.offsetWidth-50;

	tooltip.style.top=y;
	tooltip.style.left=x+90;
}

function KillToolTip()
{
    tooltip.style.display='none';
}
