function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
};
rnd.today = new Date();
rnd.seed = rnd.today.getTime();
function rand(number) {
	return Math.ceil(rnd()*number);
};
function image(src,title,width,height,border,href,target) {
	this.src = src;
	this.title = title;
	this.width = width;
	this.height = height;
	this.border = border;
	this.href = href;
	this.target = target;
	this.selected = false;
};
function chooseImage(arry) {
	var idx, str = "";
	do {
		idx = rand(arry.length)-1;
	} while(arry[idx].selected == true);
	if(arry[idx].href.length > 0) str = "<A HREF=\""+arry[idx].href+"\" TARGET=\""+arry[idx].target+"\">";
	str += "<IMG SRC=\""+arry[idx].src+"\" ALT=\""+arry[idx].title+"\" WIDTH=\""+arry[idx].width+"\" HEIGHT=\""+arry[idx].height+"\" BORDER=\""+arry[idx].border+"\">";
	if(arry[idx].href.length > 0) str += "</A>";
	document.write(str);
	arry[idx].selected = true;
	return true;
};
// syntax: image("src","alt text",height,width,border,"url","target");
featuredProjects = new Array();
featuredProjects[0] = new image("../images/home/featuredProjects/marketStreet.jpg","click to view this Featured Project",240,110,0,"projects/retail/01/","_self");
featuredProjects[1] = new image("../images/home/featuredProjects/summitEast.jpg","click to view this Featured Project",240,110,0,"projects/office/10/","_self");
featuredProjects[2] = new image("../images/home/featuredProjects/fortBraden.jpg","click to view this Featured Project",240,110,0,"projects/public/04/","_self");

conceptualWork = new Array();
conceptualWork[0] = new image("../images/home/conceptualWork/concept01.jpg","click to view this Conceptual Work",240,110,0,"#","_self");
conceptualWork[1] = new image("../images/home/conceptualWork/concept02.jpg","click to view this Conceptual Work",240,110,0,"#","_self");
conceptualWork[2] = new image("../images/home/conceptualWork/concept03.jpg","click to view this Conceptual Work",240,110,0,"#","_self");

