var imgs = new Array(); var links = new Array(); 
var imgcnt = 0; var thisimg = 0;
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=FWGC';
imgs[imgcnt++] = 'img\/rotad1.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=FWAC';
imgs[imgcnt++] = 'img\/rotad2.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=PROD&Store_Code=TFMS&Product_Code=PIX01&Category_Code=PIXIES';
imgs[imgcnt++] = 'img\/rotad3.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=FJ';
imgs[imgcnt++] = 'img\/rotad4.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=PT';
imgs[imgcnt++] = 'img\/rotad5.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=LM';
imgs[imgcnt++] = 'img\/rotad6.jpg';
links[imgcnt] = 'http:\/\/www.faeriemagazine.com\/miva\/merchant.mvc?Screen=CTGY&Store_Code=TFMS&Category_Code=BACKISSUE';
imgs[imgcnt++] = 'img\/rotad7.jpg';

function rotate() {
if (document.images) {
thisimg++;
if (thisimg >= imgcnt) thisimg = 0;
document.rollimg.src = imgs[thisimg];
setTimeout("rotate();",4000);
}
}
setTimeout("rotate();",4000); 
