

/*
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/slideshow/virtual/20070327-virtual-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\">1. ABN AMRO, the leader<br /></td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">ABN AMRO, a Dutch bank, was the first European bank to create a virtual branch on the Second Life site.<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Linden Research, Inc., All rights reserved</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/slideshow/virtual/20070327-virtual-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\">2. ING, parent of ING Direct in the U.S.</td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">Another Dutch bank, ING, has a site under construction, also on Second Life.<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Linden Research, Inc., All rights reserved</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/slideshow/virtual/20070327-virtual-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\">3. Wells Fargo's Stagecoach Island</td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">Wells Fargo's Stagecoach Island is a stand-alone site. Visitors can participate in sports, play chess and bingo, shop, go dancing or go to concerts after they've earned virtual money.<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Wells Fargo, Stagecoach Island</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/slideshow/virtual/20070327-virtual-4.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">4. Wells Fargo ATM and cafe<br /></td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">Avatars on Wells Fargo's Stagecoach Island earn virtual money by visiting ATMs and answering questions about personal finance.<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Wells Fargo, Stagecoach Island</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/slideshow/virtual/20070327-virtual-5.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">5. Earn while learning<br /></td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">By answering all of these questions correctly, avatars can earn $50 -- virtually, that is …<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Wells Fargo, Stagecoach Island</td></tr></table>");
g_ImageTable[g_imax++] = new Array ("<img src=\"/images_mra/slideshow/virtual/20070327-virtual-6.jpg\" width=\"220\" height=\"220\" border=\"0\">", "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td class=\"shSubhead\" colspan=\"2\" height=\"25\">6. With $4, rent a Ferrari<br /></td></tr><tr><td colspan=\"2\"></td></tr><tr><td><span class=\"interactive\">Once avatars have money, they can spend it renting cars, bicycles or jet skis. They can go shopping at the mall or even get a haircut.<br><br><br><span class=\"small\"><font color=\"#000000\">Source: Wells Fargo, Stagecoach Island</td></tr></table>");
//extend the above list as desired
g_dwTimeOutSec=1

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play

