/*
Large scripts for portfilio page are externalized to improve layout code legibility.
OLD SCREEN RES CHECKER LINE: document.write(screen.availWidth + " x " + screen.availHeight);
 */
			var thumbnailArray = new Array();
			//
			function Entry(pathToIcon, linkstring, qltext){
			this.pathToIcon=pathToIcon;
			this.linkstring=linkstring;
			this.qltext=qltext;
			}
			thumbnailArray[1] = new Entry("images/illustration1Album/commercialAlbum/thumbnails/strawberry4webfolio.jpg", "images/index.html?depth=3&&keyword=recentAlbum", "new, the latest work~ as it happens!");
			thumbnailArray[2] = new Entry("images/designAlbum/thumbnails/CGP_teacherguide.jpg", "images/page.html?depth=4&amp;&amp;keyword=designAlbum&amp;&amp;imgNum=43", "books, brochures, cover art~ marvels of modern design.");
			thumbnailArray[3] = new Entry("images/illustration1Album/mythAlbum/thumbnails/temple.jpg", "images/page.html?depth=4&amp;&amp;keyword=mythAlbum&amp;&amp;imgNum=1", "discover the lost wonders of Atlantis!");
			thumbnailArray[4] = new Entry("images/illustration1Album/fantasyAlbum/thumbnails/ogre.jpg", "images/page.html?depth=4&amp;&amp;keyword=fantasyAlbum&amp;&amp;imgNum=1", "amazing fantasy artwork!");
			thumbnailArray[5] = new Entry("images/illustration1Album/sci-fiAlbum/thumbnails/planet.jpg", "images/page.html?depth=4&amp;&amp;keyword=sci-fiAlbum&amp;&amp;imgNum=5", "flashy spaceships, wierd aliens~ explosions!");
			thumbnailArray[6] = new Entry("images/illustration1Album/shakespeareAlbum/thumbnails/dreamDonkey.jpg", "images/page.html?depth=4&amp;&amp;keyword=shakespeareAlbum&amp;&amp;imgNum=2", "Shakespeare cover designs in 3D~ o the drama!");
			/*thumbnailArray[7] = new Entry("images/designAlbum/brochureAlbum/thumbnails/SYP_Cover.jpg", "images/page.html?depth=4&amp;&amp;keyword=brochureAlbum&amp;&amp;imgNum=1", "fun conference guide for the Society of Young publishers.");*/
			thumbnailArray[7] = new Entry("images/flashAlbum/thumbnails/frog.jpg", "images/flashAlbum/index.html", "flash design (under construction but take a look anyway).");
			thumbnailArray[8] = new Entry("images/illustration2Album/cartoonAlbum/thumbnails/madScientist.jpg", "images/page.html?depth=4&amp;&amp;keyword=cartoonAlbum&amp;&amp;imgNum=14", "wacky toons, educational toons &amp; full-on illustrations.");
			
/* translate array in to a row of thumbnail icons: */
document.write('<div id="iconImageWrapper">'); 
for (var i=1; i<thumbnailArray.length; i++) {
document.write('<div id="thumbnailIcon"><a href="' + thumbnailArray[i].linkstring + '"><img src="' + thumbnailArray[i].pathToIcon + '" width="50" height="72" alt="icon"/></a></div>');
}
document.write('</div>');
