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/TM_26102010_Historic_90x50.jpg"
LnkVal_new[1] = "javascript:play_current_video('TM_26102010_Historic')"
TxtVal_new[1] = "The Historic nail biting wins"

PicVal_new[2] = "/images/videos/latest-editor/TM_19102010_Celebrities_90x50.jpg"
LnkVal_new[2] = "javascript:play_current_video('TM_19102010_Celebrities')"
TxtVal_new[2] = "Celebrities, stars and their peculiar beliefs"

PicVal_new[3] = "/images/videos/latest-editor/TM_19102010_12thMan_90x50.jpg"
LnkVal_new[3] = "javascript:play_current_video('TM_19102010_12thMan')"
TxtVal_new[3] = "When superstitions played the 12th man"

PicVal_new[4] = "/images/videos/latest-editor/SFH_Ganguly1_90x50.jpg"
LnkVal_new[4] = "javascript:play_current_video('SFH_Ganguly1')"
TxtVal_new[4] = "Ganguly straight from the heart Part 1"

PicVal_new[5] = "/images/videos/latest-editor/TM_19102010_SteveWaugh_90x50.jpg"
LnkVal_new[5] = "javascript:play_current_video('TM_19102010_SteveWaugh')"
TxtVal_new[5] = "Steve Waugh and his beloved red handkerchief"

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);
}


