startingColor = new Array() 
endingColor = new Array() 

sPrefix=".php";
var yourImages = new Array("/photos/2/20_sm.jpg","/photos/2/1b_sm.jpg","/photos/1/3_sm.jpg","/photos/1/2b_sm.jpg","/photos/3/1b_sm.jpg","/photos/3/2_sm.jpg","/photos/4/1_sm.jpg","/photos/4/2b_sm.jpg")

// Random page generator
var randomnumber=Math.floor(Math.random()*5)
switch (randomnumber)
{
case 0:
  locationAfterPreload = "fashion" + sPrefix
  break;
case 1:
  locationAfterPreload = "portraits" + sPrefix
  break;
case 2:
  locationAfterPreload = "photo-illustrations" + sPrefix
  break;
case 3:
  locationAfterPreload = "still-life" + sPrefix
  break;
case 4:
  locationAfterPreload = "animals" + sPrefix
  break;
default:
  locationAfterPreload = "portraits" + sPrefix 
}


//var locationAfterPreload = "portraits.htm" 
var preloadbarWidth = 350 // The length of the preload bar. Should be greater than total amount of images you want to preload!
var preloadbarHeight = 15 // The height of the gradient/preload bar
var backgroundOfGradient = "#000000" // Default color while the preload bar is "filling up"

// Color the preloadbar is starting with - enter 1st, 3rd and 5th numbers/letters of color code
startingColor[0] = "6" 
startingColor[1] = "6"
startingColor[2] = "6"

// Color the preloadbar is going to end up with - enter the 1st, 3rd and 5th numbers/letters of color code
endingColor[0] = "3"
endingColor[1] = "3"
endingColor[2] = "3"

// FOR TROUBLESHOOTING: 2 is the minumum value
var gap = 2 


if (!document.all) location.replace(locationAfterPreload)
var a = 10, b = 11, c = 12, d = 13, e = 14, f=15, i, j, ones = new Array(), sixteens = new Array(), diff = new Array();
var convert = new Array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"), imgLen = yourImages.length;
var loaded = new Array(), preImages = new Array(), currCount = 0, pending = 0, h = 0, hilite = new Array(), cover = new Array();
var num = Math.floor(preloadbarWidth/gap);
for (i = 0; i < 3; i++) {
startingColor[i] = startingColor[i].toLowerCase();
endingColor[i] = endingColor[i].toLowerCase();
startingColor[i] = eval(startingColor[i]);
endingColor[i] = eval(endingColor[i]);
diff[i] = (endingColor[i]-startingColor[i])/num;
ones[i] = Math.floor(diff[i]);
sixteens[i] = Math.round((diff[i] - ones[i])*15);
}
endingColor[0] = 0;
endingColor[1] = 0;
endingColor[2] = 0;
i = 0, j = 0;
while (i <= num) {
hilite[i] = "#";
while (j < 3) {
hilite[i] += convert[startingColor[j]];
hilite[i] += convert[endingColor[j]];
startingColor[j] += ones[j];
endingColor[j] += sixteens[j];
if (endingColor[j] > 15) {
endingColor[j] -= 15;
startingColor[j]++;
}
j++;
}
j = 0;
i++;
}
function loadImages() {
for (i = 0; i < imgLen; i++) {
preImages[i] = new Image();
preImages[i].src = yourImages[i];
loaded[i] = 0;
cover[i] = Math.floor(num/imgLen)*(i+1)
}
cover[cover.length-1] += num%imgLen
checkLoad();
}
function checkLoad() {
if (pending) { changeto(); return }
if (currCount == imgLen) { location.replace(locationAfterPreload); return }
for (i = 0; i < imgLen; i++) {
if (!loaded[i] && preImages[i].complete) {
loaded[i] = 1; pending++; currCount++;
checkLoad();
return;
}
}
setTimeout("checkLoad()",10);
}
function changeto() {
if (h+1 > cover[currCount-1]) {
var percent = Math.round(100/imgLen)*currCount;
if (percent > 100) while (percent != 100) percent--;
if (currCount == imgLen && percent < 100) percent = 100;
//defaultStatus = "Loaded " + currCount + " out of " + imgLen + " images [" + percent + "%].";
//defaultStatus = "Loaded " + currCount + " out of " + imgLen + " images.";
defaultStatus = "Loaded " + percent + "%";
pending--;
checkLoad();
return;
}
eval("document.all.cell" + (h+1) + ".style.backgroundColor = hilite[h]");;
h++;
setTimeout("changeto()",1);
}
//defaultStatus = "Loaded 0 out of " + imgLen + " images [0%]."
defaultStatus = "Richard Toro Photography"