var randomTWD = 0;
var DoIt = 0;
var path = "http://www.idera.com/Images/";
images = new Array;
images[1] = new Image();
images[1].src = path+"logo_rotate/quote_1.gif";
images[2] = new Image();
images[2].src = path+"logo_rotate/quote_2.gif";
images[3] = new Image();
images[3].src = path+"logo_rotate/quote_3.gif";
images[4] = new Image();
images[4].src = path+"logo_rotate/quote_4.gif";
images[5] = new Image();
images[5].src = path+"logo_rotate/quote_5.gif";
images[6] = new Image();
images[6].src = path+"logo_rotate/quote_6.gif";
images[7] = new Image();
images[7].src = path+"logo_rotate/quote_7.gif";
function TWDpics() {
var imgnum = images.length - 1;
do {
var randnum = Math.random();
randomTWD = Math.round((imgnum - 1) * randnum) + 1;
} while (randomTWD == DoIt);
DoIt = randomTWD;
document.ImageHolder.src = images[DoIt].src;
}
function redirectMe()
{
     setTimeout("location='anotherPage.html'",5000);
}
