Back to site

Lookbook

<!--
//set image paths
src = ["http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8198.jpg",
"http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8182.jpg",
"http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8176.jpg",
"http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8378.jpg", "http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8251.jpg",
"http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8369.jpg", "http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8310.jpg",
"http://i8.photobucket.com/albums/a43/afatelikeyours/DSC_8325.jpg"]


//set corresponding urls
url = ["/products", "/products", "/products", "/products", "/products", "/products", "/products", "/products", "/products"]

//set duration for each image
duration = 4;

//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();
}
//-->