// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 9000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 5;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this



Picture[1]  = '/new_ma-collection/images/dvd/Captain_America.jpg';
Picture[2]  = '/new_ma-collection/images/dvd/The_Rite.jpg';
Picture[3]  = '/new_ma-collection/images/dvd/Sucker_Punch.jpg';
Picture[4]  = '/new_ma-collection/images/dvd/Shutter.jpg';
Picture[5]  = '/new_ma-collection/images/dvd/apocalypse_now.jpg';
Picture[6]  = '/new_ma-collection/images/dvd/avatar.jpg';
Picture[7]  = '/new_ma-collection/images/dvd/Red_Riding.jpg';
Picture[8]  = '/new_ma-collection/images/dvd/Clash_of_the_titan.jpg';
Picture[9] = '/new_ma-collection/images/dvd/elektra.jpg';
Picture[10] = '/new_ma-collection/images/dvd/g-force.jpg';
Picture[11] = '/new_ma-collection/images/dvd/gran_torino.jpg';
Picture[12] = '/new_ma-collection/images/dvd/harry_potter.jpg';
Picture[13] = '/new_ma-collection/images/dvd/hitman.jpg';
Picture[14] = '/new_ma-collection/images/dvd/iron_man.jpg';
Picture[15] = '/new_ma-collection/images/dvd/kingkong.jpg';
Picture[16] = '/new_ma-collection/images/dvd/newmoon.jpg';
Picture[17] = '/new_ma-collection/images/dvd/ninja_assassin.jpg';
Picture[18] = '/new_ma-collection/images/dvd/platoon.jpg';
Picture[19] = '/new_ma-collection/images/dvd/prediction.jpg';
Picture[20] = '/new_ma-collection/images/dvd/silent_hill.jpg';
Picture[21] = '/new_ma-collection/images/dvd/superman_return.jpg';
Picture[22] = '/new_ma-collection/images/dvd/theeye.jpg';
Picture[23] = '/new_ma-collection/images/dvd/transformers.jpg';
Picture[24]  = '/new_ma-collection/images/dvd/jason_vs_freddy.jpg';
Picture[25]  = '/new_ma-collection/images/dvd/armageddon.jpg';
Picture[26]  = '/new_ma-collection/images/dvd/blade.jpg';
Picture[27]  = '/new_ma-collection/images/dvd/hulk.jpg';
Picture[28]  = '/new_ma-collection/images/dvd/indianajohn.jpg';
Picture[29]  = '/new_ma-collection/images/dvd/ironmonkey.jpg';
Picture[30]  = '/new_ma-collection/images/dvd/jurassikpark.jpg';
Picture[31]  = '/new_ma-collection/images/dvd/k19.jpg';
Picture[32] = '/new_ma-collection/images/dvd/pearlharbour.jpg';
Picture[33] = '/new_ma-collection/images/dvd/rambo.jpg';
Picture[34] = '/new_ma-collection/images/dvd/scorpionking.jpg';
Picture[35] = '/new_ma-collection/images/dvd/smallville.jpg';

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShowentree(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShowentree()', SlideShowSpeed);
}
