/*JAVASCRIPT FOR THEMES_FIGURES.HTML*/

cb_catalog=new Array(); i=-1;
cb_catalog[++i]="CODE	CATEGORY	TITLE	THEME	TYPE	PRICE	SIZE	COLOR	t-width	t-height	f-width	f-height	PRICE RANGE";
cb_catalog[++i]="figures								227	30			";
cb_catalog[++i]="0593	None	Dancing for Mother Nature 2, 2010	Figures^	monoprint	$395 	9 x 12	orange	176	120	659	450";
cb_catalog[++i]="0592	None	Dancing for Mother Nature 1, 2010	Figures^	mixed media/monoprint	$395 	9 x 12	blue	175	120	658	450";
cb_catalog[++i]="0594	None	Dancing for Mother Nature 3, 2010	Figures^	monoprint	$395 	9 x 12	blue^white	169	120	632	450";
cb_catalog[++i]="0001	None	Joy Boy #1, 2000	Figures^	monoprint	$95 	8-3/4 x 12	blue^	160	120	603	450";
cb_catalog[++i]="0602	None	Dancing for Mother Nature 11, 2010	Figures^	monoprint	$295 	9 x 7-1/2	green^yellow	101	120	378	450";
cb_catalog[++i]="0603	None	Dancing for Mother Nature 12, 2010	Figures^	monoprint	$395 	9 x 7	brown^orange	94	120	351	450";
cb_catalog[++i]="0601	None	Dancing for Mother Nature 10, 2010	Figures^	monoprint	$295 	9 x 7	blue^white	90	120	338	450";
cb_catalog[++i]="0043	None	Who's There, 2002	Figures^	monoprint	$295 	9-1/4 x 6-3/4	orange^	89	120	321	432";
cb_catalog[++i]="0600	None	Dancing for Mother Nature 9, 2010	Figures^	monoprint	$395 	12 x 9	green^white	88	120	329	450";
cb_catalog[++i]="0604	None	Dancing for Mother Nature 13, 2010	Figures^	monoprint	$395 	12 x 8-1/2	brown^orange	88	120	331	450";
cb_catalog[++i]="0002	None	The Meeting, 1998	Figures^	monotype	$195 	8-3/4 x 12	blue^	87	120	313	432";
cb_catalog[++i]="0225	None	Her Secret Landscape 3, 2006	Figures^	monoprint	$295 	12 x 9	green^white	85	120	317	450";
cb_catalog[++i]="0241	None	Bodice 2, 2003	Figures^	monoprint	$595 	17-1/2 x 12	orange^	84	120	315	450";
cb_catalog[++i]="0599	None	Dancing for Mother Nature 8, 2010	Figures^	monoprint	$295 	9 x 6	orange^blue	79	120	295	450";
cb_catalog[++i]="0598	None	Dancing for Mother Nature 7, 2010	Figures^	monoprint	$295 	10-1/2 x 6-1/2	orange^blue	74	120	279	450";
cb_catalog[++i]="0596	None	Dancing for Mother Nature 5, 2010	Figures^	monoprint	$295 	10-1/2 x 6-1/2	blue^white	71	120	268	450";
cb_catalog[++i]="0595	None	Dancing for Mother Nature 4, 2010	Figures^	monoprint	$195 	8-1/2 x 4	blue^white	59	120	220	450";
cb_catalog[++i]="0597	None	Dancing for Mother Nature 6, 2010	Figures^	monoprint	$195 	8-1/2 x 4	orange^white	59	120	222	450";
cb_catalog[++i]="0042	None	Cory Rearranged, 2001	Figures^	monotype/collage	$990 	58 x 18	red^	38	120	138	432";




for (i=0;i<cb_catalog.length;++i) {  //THIS SPLITS THE TWO-DIMENSIONAL ARRAY AT THE TABS
				cb_catalog[i]=cb_catalog[i].split("\t");
}
	function make_thumb_table() { //THIS CREATES A NESTED TABLE WITHIN THE 2ND TABLE, 1ST ROW, 1ST COLUMN FOR THE IMAGES GALLERY
							thumbs='<table class="gallery_table" cellspacing="5px">';
							cellcount=0;
							for (i=1;i<cb_catalog.length;++i) {
								if (cellcount%3==0) {
									thumbs+='<tr>';
								}
 
								thumbs+='<td class="image_placement"><a href="javascript:open_Enlargement_Window('+i+');"><img class="image_border" alt="'+cb_catalog[i][2]+'"height="'+cb_catalog[i][9]+'" width="'+cb_catalog[i][8]+'" src="cb_thumb_images/'+cb_catalog[i][0]+'.jpg" id="cell_'+i+'"  style="position: relative; left: 0px; top: 0px" /></a></td>'; //MLN REMOVED THE STYLE PORTION OF THIS STATEMENT, BUT I PUT IT BACK IN SO THE ANIMATION WOULD WORK
								++cellcount;
							if (cellcount%3==0) {	
								thumbs+='</tr>';	
							}
							}
							thumbs+='</table>';
							document.getElementById('gallery').innerHTML=thumbs;
							 
							
								
						}
						
						function open_Enlargement_Window(i) {
						    OpenWin = window.open("cb_figures_enlarge.html?row="+i, "enlargements", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=825px,height=700px, left=10px");	 
							OpenWin.focus();
							}





