// JavaScript Document

/*************************************************************/
/**				Tool Tip Content Array & Function			**/
/**				created: 12/5/2008							**/
/**				by: Tom Dietrich							**/
/**				v 1.0 - initial release						**/
/*************************************************************/

var toolTipArray = new Array();
toolTipArray[0] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>Many experts suggest buying a life insurance policy equal to 10 to 20 times your annual income\. Annual income is an important factor in determining your needs\, but it\’s not the only one\.</p>";
toolTipArray[1] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>A dependant is anyone who depends on your income\. The amount of life insurance you need will depend on the total amount your family needs\, before taxes\, to maintain their current standard of living\, typically 60\%\-75\% of total income\. Families with higher incomes typically fall into the lower end of that range\.</p>";
toolTipArray[2] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>Your age correlates with the amount of life insurance you will need\. The younger you are\, the more life insurance need you will have\. Why\? Because you have a longer time to work before retirement\, which means you have a higher earning potential\.</p>";
toolTipArray[3] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>Without your work income\, your family will face an annual shortfall\. The number of years the benefits are needed will cover this shortfall until circumstances change \(for instance\ when your children graduate from college\.\)</p>";
toolTipArray[4] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>A 4\% assumption has been incorporated in the calculation\. You may enter your own data and override these assumptions to gain an even more personalized analysis\.</p>";
toolTipArray[5] = "<p style='padding: 15px 5px 5px 90px; font-size: 11px; line-height:1.5em'>A 6\% assumption has been incorporated in the calculation\. You may enter your own data and override these assumptions to gain an even more personalized analysis\.</p>";

function tipChange(NUMBER){
	var toolTipArea = document.getElementById("tipbox");
	//alert(tipChange[NUMBER]);
	toolTipArea.innerHTML = toolTipArray[NUMBER];
}