// JavaScript Document
<!--
/*
Script by FPMC at http://jsarchive.8m.com
Submitted to JavaScript Kit (http://javascriptkit.com)
For this and 400+ free scripts, visit http://javascriptkit.com
*/
//set image paths
src=["GIFS/8x12carriers.gif","GIFS/bubble.jpg","GIFS/butchers.jpg","GIFS/cardbag.jpg","GIFS/cello2.jpg","GIFS/clearpolyrigidhandle.gif","GIFS/clingfilmlmfroll.gif","GIFS/corrugat.jpg","GIFS/dispense.gif","GIFS/eggbox2.gif","GIFS/ffbag.jpg","GIFS/flour.jpg","GIFS/garment.jpg","GIFS/jiffybags.gif","GIFS/layflat2.jpg","GIFS/maillitegold.gif","GIFS/maskingtape.gif","GIFS/mgrip2.jpg","GIFS/palletwrap.gif","GIFS/paper_bags.gif","GIFS/pelaspan.jpg","GIFS/polysht1.JPG","GIFS/printedvest.gif","GIFS/random_bags.gif","GIFS/rolls.gif","GIFS/sacks2.jpg","GIFS/sackties.gif","GIFS/string.gif","GIFS/ta3.jpg","GIFS/tapes.gif","GIFS/tieontags.gif","GIFS/vestcarriers.gif","GIFS/whitepolycarriers.gif"]
//set duration for each image
duration = 2;
//Please do not edit below
ads=[]; ct=0;
function switchAd() {
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Ad_Image"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("switchAd()",duration*1000);
}
function doLink(){
location.href = url[ct];
} onload = function(){
if (document.images)
switchAd();
}
//-->