/* AUTHOR: mathieu simons */
/* Creation date: 18/05/2002 */
var repeatshow = 1; // 1 = yes, 0 = no
var timedelay = 100000; // time in milliseconds, 100000 = 100 secs
var page = new Array(
"http://www.always4you.com/apromo/promo11.html",
"http://www.always4you.com/apromo/promo12.html",
"http://www.always4you.com/stores/auto.html",
"http://www.always4you.com/stores/apparel.html",
"http://www.always4you.com/stores/shoesmisc.html",
"http://www.always4you.com/stores/clothing.html",
"http://www.always4you.com/stores/banking.html",
"http://www.always4you.com/stores/books.html",
"http://www.always4you.com/stores/computers.html",
"http://www.always4you.com/stores/clearance.html",
"http://www.always4you.com/stores/electronics.html",
"http://www.always4you.com/stores/entertainment.html",
"http://www.always4you.com/stores/flowers.html",
"http://www.always4you.com/stores/food.html",
"http://www.always4you.com/stores/free.html",
"http://www.always4you.com/stores/freevacation.html",
"http://www.always4you.com/stores/gifts.html",
"http://www.always4you.com/stores/gifts2.html",
"http://www.always4you.com/stores/home.html",
"http://www.always4you.com/stores/learning.html",

"http://www.always4you.com/stores/office.html",
"http://www.always4you.com/stores/pharm.html",
"http://www.always4you.com/stores/sports.html",
"http://www.always4you.com/stores/telecom.html",
"http://www.always4you.com/stores/travel.html"
);
var endpage = "http://www.always4you.com/apromo/promo11.html"; 
var slidenum = 0;
var slidecount = page.length;
var timerID = 0;
var win2;
var winload; 
function showSlideShow() {
slidenum++;
if (slidenum < slidecount+1) {
parent.main2.location.href = page[slidenum-1];
winload = 1;
}
if (slidenum == slidecount+1) { // if finished
if (repeatshow) {
slidenum = 0;
timerID = setTimeout('showSlideShow()', timedelay)
}
else parent.main2.location.href = endpage;
}
else timerID = setTimeout('showSlideShow()', timedelay);
}
var ft
function timedel(ft) {
timedelay=timedelay+ft
if (timedelay <10000)
	{ timedelay = 10000}
}