

/*
Interactive Image slideshow with text description
By Christian Carlessi Salvadó (cocolinks@c.net.gt). Keep this notice intact.
Visit http://www.dynamicdrive.com for script
*/


g_fPlayMode = 0;
g_iimg = -1;
g_imax = 0;
g_ImageTable = new Array();

function ChangeImage(fFwd)
{
if (fFwd)
{
if (++g_iimg==g_imax)
g_iimg=0;
}
else
{
if (g_iimg==0)
g_iimg=g_imax;
g_iimg--;
}
Update();
}

function getobject(obj){
if (document.getElementById)
return document.getElementById(obj)
else if (document.all)
return document.all[obj]
}

function Update(){
//getobject("_Ath_Slide").src = g_ImageTable[g_iimg][0];
getobject("_Ath_Slide").innerHTML = g_ImageTable[g_iimg][0];
getobject("_Ath_FileName").innerHTML = g_ImageTable[g_iimg][1];
getobject("_Ath_Img_X").innerHTML = g_iimg + 1;
getobject("_Ath_Img_N").innerHTML = g_imax;
}


function Play()
{
g_fPlayMode = !g_fPlayMode;
if (g_fPlayMode)
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = false;
Next();
}
else 
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = false;

}
}
function OnImgLoad()
{

}
function Prev()
{
ChangeImage(false);
}
function Next()
{
ChangeImage(true);
}


////configure below variables/////////////////////////////

//configure the below images and description to your own. 
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/Guides/Financial_Literacy/oct/portfolio_3.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">Aggressive portfolio<br /></td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">An aggressive portfolio is most appropriate for younger investors or those with a long time horizon. It's geared for growth and should include a number of different asset classes, as shown, to improve performance and reduce volatility. Investors willing to assume a high level of risk have been rewarded, historically, with annual returns of between 9.5 percent and 10.5 percent. Of course, past performance is no guarantee of future returns.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/Guides/Financial_Literacy/oct/portfolio_2.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">Moderate growth portfolio</td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">This portfolio is most appropriate for investors who are approaching retirement.  Most people prefer to dial back on exposure to equities as the investment window narrows. With less time to recover from market dips, keeping a larger percentage of money protected from volatility makes sense, as does keeping a larger reserve of cash equivalents for distributions. However, the portfolio still has a sizable equity component because a young retiree needs the portfolio to last 30-plus years. Historical returns have averaged between 8.5 percent and 9.5 percent.</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/Guides/Financial_Literacy/oct/portfolio_1.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">Moderately conservative portfolio</td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">This structure is usually most appropriate for retirees who want more stability of principal within their portfolio. This allocation gives an investor a moderate exposure to the stock market for some growth but fixed income makes up the majority of the holdings. Again, in anticipation of distributions or withdrawals, a large portion may be held in cash equivalents or short-term bonds.  Historical returns have averaged between 7.5 percent and 8.5 percent. </td></tr></table>");
//extend the above list as desired
g_dwTimeOutSec=1

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play

