function makeArray(len) {
	for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

var candy = new makeArray(4);
candy[0] = "<img src=\"img/photos/homepage/atpiano.jpg\" width=\"290\" height=\"310\" border=\"0\" alt=\"philipglass.com\">" ;
candy[1] = "<img src=\"img/photos/homepage/homepage_close.jpg\" width=\"290\" height=\"368\" border=\"0\" alt=\"philipglass.com\">" ;
candy[2] = "<img src=\"img/photos/homepage/Mapplethorp1976.jpg\" width=\"290\" height=\"390\" border=\"0\" alt=\"philipglass.com\">" ;
candy[3] = "<img src=\"img/photos/homepage/PhillipGlass_1983.jpg\" width=\"290\" height=\"310\" border=\"0\" alt=\"philipglass.com\">" ;


function rand(n) {
var now = new Date()
var seed = now.getTime() % 0xfffffff
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

