var isIE=document.all?true:false;
var isDOM=document.getElementById?true:false;
var current = 0;
PicVar = 0;
var TotalImages=5;
PicVal_new = new Array();
LnkVal_new = new Array();
TxtVal_new = new Array();
PicVal_new[1] = "/images/videos/latest-editor/CliveLloyd_main.jpg"
LnkVal_new[1] = "javascript:play_current_video('Clive')"
TxtVal_new[1] = "Lloyd on referral system, future of Tests and more"

PicVal_new[2] = "/images/videos/latest-editor/Kambli_main.jpg"
LnkVal_new[2] = "javascript:play_current_video('Kambli')"
TxtVal_new[2] = "Kambli denies rift with childhood friend Tendulkar"

PicVal_new[3] = "/images/videos/latest-editor/Bevan_main.jpg"
LnkVal_new[3] = "javascript:play_current_video('Bevan')"
TxtVal_new[3] = "Bevan on Australia’s downfall, IPL and a lot more"

PicVal_new[4] = "/images/videos/latest-editor/Aravinda_main.jpg"
LnkVal_new[4] = "javascript:play_current_video('Aravinda')"
TxtVal_new[4] = "De Silva on his performance in the 1996 WC Final"

PicVal_new[5] = "/images/videos/latest-editor/LorgatFlagship_main.jpg"
LnkVal_new[5] = "javascript:play_current_video('Haroon')"
TxtVal_new[5] = "Lorgat declares that WC is a bigger than WT20"

function ShowSuzyPic(newpic) {
if(isDOM){document.getElementById("suzypic").src = PicVal_new[newpic];}
else if(isIE){ document.SuzyPic.src = PicVal_new[newpic];}
if(isDOM){document.getElementById("hlink").href = LnkVal_new[newpic];}
else if(isIE){ document.hlink.href = LnkVal_new[newpic];}
if(isDOM){document.getElementById("txt").innerHTML= TxtVal_new[newpic];}
else if(isIE){ document.txt.innerHTML= TxtVal_new[newpic];}
current = newpic;
}
function PreviousSuzyPic() {
if(current<=1)
{ current = 5;}
else
{ current--;}
ShowSuzyPic(current);
}
function NextSuzyPic() {
if (current >=5) 
{current = 1; }
else
{ current++; }
ShowSuzyPic(current);
}

