
// Code by John Mounsey sometime in 2005 - then amended in 2007. Yay for me!

function dressList(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z)
	{   
     	this[0] = a;
  	this[1] = b;
	this[2] = c;
	this[3] = d;
	this[4] = e;
	this[5] = f;
	this[6] = g;
	this[7] = h;
	this[8] = i;
	this[9] = j;
	this[10] = k;
	this[11] = l;
	this[12] = m;
	this[13] = n;
	this[14] = o;
	this[15] = p;
	this[16] = q;
	this[17] = r;
	this[18] = s;
	this[19] = t;
	this[20] = u;
	this[21] = v;
	this[22] = w;
	this[23] = x;
	this[24] = y;
	this[25] = z
   	}
   
function chooseDress(list)

{
var today 	= new Date();
var page 	= today.getSeconds() % dressList.length;

document.dress.src = 'gfx/photographs/medium/'+ (list[page])+ '.jpg';
document.dress.alt = '"' + list[page] + '" - Just one of our unique designs ...'
}

dresses = new dressList

(
"aurora",
"anouska",
"cordelia",
"christa",
"claudette",
"demelza",
"freya",
"georgia",
"francoise",
"giovanna",
"giselle",
"green-giselle",
"isabella",
"jezebel",
"lucretia",
"maria-giselle",
"melvina",
"millennium",
"sophia",
"victoria",
"zara",
"casablanca",
"chicago",
"persia",
"sahara",
"elysia"
);



