function rPhoto(link, photoFile) {
	this.link = link;
	this.photoFile = photoFile
}

//MAKE SURE TO INCLUDE LEADING COMMA AFTER FIRST ENTRY
photos = new Array (
	 new rPhoto('http://www.pankow.com/about_featured_1.shtml','images/rotate/feature1.jpg')
	,new rPhoto('http://www.pankow.com/about_featured_2.shtml','images/rotate/feature2.jpg')
	,new rPhoto('http://www.pankow.com/about_featured_3.shtml','images/rotate/feature3.jpg')
	,new rPhoto('http://www.pankow.com/about_featured_4.shtml','images/rotate/feature4.jpg')
	,new rPhoto('http://www.pankow.com/about_featured_5.shtml','images/rotate/feature5.jpg')
	,new rPhoto('http://www.pankow.com/about_featured_6.shtml','images/rotate/feature6.jpg')
);

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.ceil(rnd()*number);
};
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
	
var chosenPhoto=photos[rand(photos.length)-1];

document.write('<a href="' + chosenPhoto.link + '"><img border="0" width="348" height="433" alt="" src="' + chosenPhoto.photoFile + '"></a>')

