var strHtml='<div id=ff_img_div>';
    strHtml+='<a href="javascript:ff.hotlink();">'
    strHtml+='<img  id=ff_img style="filter: revealTrans(duration=2,transition=20); border-color: #000000; color: #000000" border="0" class="img01"   width=200 height=132>'
    strHtml+='</a>'
    strHtml+='</div>';
    strHtml+='<div id=TxtBlk><p id=con></p></div>';
    
var imgUrl=new Array();
imgUrl[0]="Images/img_about-us_03.jpg";
imgUrl[1]="Images/img_about-us_07.jpg";

var imgText = new Array();
imgText[0]="Roland Schmid (dipl.Mach.Ing.(ETH), MIE (Aust), PhD (Sydney Uni)) has rich Operations and management experience with international companies in Europe and Asia. Before setting up Vela Eurasia, Roland has worked many years in the high-tech electronics industry where he lead development and manufacturing teams of computer equipment, telecommunication products and fare collection equipment companies. His latest assignment was the running an EFT solutions business.";
imgText[1]="Robert Boonstra (Master- Economics & Business IT (Vrije University, Brussels)) has a solid professional background in quality assurance, initially at an engineering and later consulting level (SGS consultant and lead-assessor). Before joining Vela Eurasia and over a period of 12 years, Robert gained significant purchasing/logistics, manufacturing and operations management knowledge with international companies.";

var rl=imgUrl.length;
var pics="";	
var links="";	
var texts="";
var cons="";

ff = new slideshow("ff");
    ff.prefetch = 1;
    ff.sizelmt = true;
    ff.repeat = true;
    ff.timeout=9000;

for (var i=0;i<rl;i++) 
{
    s = new slide();
    s.src = "";
    s.title = "";
    s.link = "";
    s.con = "";

    s.src=imgUrl[i];
    s.con=imgText[i];
    ff.add_slide(s);
}

for (var i=0; i < ff.slides.length; i++) 
{
    s = ff.slides[i];
    s.target = "_blank";
}

document.write(strHtml);

ff.pre_update_hook = function() 
{
    sid = ff.current;
    title = ff.slides[sid].title;
    linkurl = ff.slides[sid].link;
    totals = ff.slides.length;
    scon = ff.slides[sid].con;
    tempid = parseInt(sid) + 1;
    document.getElementById("con").innerHTML = scon;
  return;
}


if (document.images) 
{
    ff.image = document.images.ff_img;
    ff.update();
    ff.play();
}