	Painting = new Array("cMazzalupo", "eBurns", "jYoung", "sMayo")		/*<<< put the featured PAINTERS names here */
	Photography = new Array("jShafer", "kmInagaki", "sAziz", "kDeluna")				/*<<< put the featured PHOTOGRAPHERS names here */
	Sculpture = new Array("mPower", "nFriedmann", "sRoss", "cPriore")				/*<<< put the featured SCULPTORS names here */
	Installation = new Array("cPriore", "dManilow", "sRoss", "slWest", "sAziz")		/*<<< put the featured INSTALLERS(?) names here */
	time_based_media = new Array("sAziz", "vAcevedo")						/*<<< you get the idea: TIME BASED MEDIA */
	works_on_paper = new Array("dManilow", "jHauger", "jShafer", "nFriedmann", "rHarding", "sRoss", "slWest")		/*<<< WORKS ON PAPER*/
	
	
	/* DO NOT make changes below this line*/
	
	all = Painting.concat(Photography, Installation, Sculpture, time_based_media, works_on_paper)
	
	PhotographyCt = Photography.length
	PaintingCt = Painting.length 
	SculptureCt = Sculpture.length
	InstallationCt = Installation.length
	time_based_mediaCt = time_based_media.length
	works_on_paperCt = works_on_paper.length 
	allCt = all.length

		
		

	
function choosePic(type, typeCt) {

			 
			 
		if (document.images) {
		
			randomNum = Math.floor((Math.random() * typeCt))
			node = document.getElementById('featPicture');
            node.setAttribute('src',"http://www.artlink.org/featuredArtists/"+type[randomNum]+".jpg");
            node = document.getElementById('featTitle');
            node.setAttribute('src',"http://www.artlink.org/featuredArtists/t_"+type[randomNum]+".gif");
			node = document.getElementById('featLink');
            node.setAttribute('href',"http://www.artlink.org/artists/"+type[randomNum]+"/index.html");
            node = document.getElementById('featLink2');
            node.setAttribute('href',"http://www.artlink.org/artists/"+type[randomNum]+"/index.html");
            

		}
	}
	
