
/*THIS IS THE EXTERNAL JAVASCRIPT PAGE FOR THE TRANSFORMATIONS SERIES*/

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";
cb_catalog[++i]="0186	Transformation Series	Inside Storyline #1, 2005		monotype	$595 	12 x 17-1/2	orange	188	120	432	275";
cb_catalog[++i]="0276	Transformation Series	Seeds of Transformation 4, 2006		mixed	$795 	17-1/2 x 12	yellow^green	84	120	314	450";
cb_catalog[++i]="0275	Transformation Series	Seeds of Transformation 3, 2006		mixed	$795 	17-1/2 x 12	blue^yellow	82	120	306	450";
cb_catalog[++i]="0187	Transformation Series	Inside Storyline #4, 2005		monotype	$795 	17-1/2 x 12	orange^white	81	120	292	432";
cb_catalog[++i]="0189	Transformation Series	Inside Storyline #3, 2005		monotype	$395 	17-1/2 x 12	brown^black	80	120	289	432";
cb_catalog[++i]="0076	Transformation Series	Seeds of Transformation, 2003		collagraph		16  x  7-1/2		62	120	193	432";
cb_catalog[++i]="0074	Transformation Series	Chrystalis in the Hollow, 2003		mixed	$495 	16 x 7-1/2	brown^white	56	120	200	432";
cb_catalog[++i]="0079	Transformation Series	Hook, Line and Maple Sugar #2, 2003		collagraph	$695 	7-1/2 x 16	blue^orange	56	120	432	201";
cb_catalog[++i]="0078	Transformation Series	Hook, Line and Maple Sugar #1, 2003		collagraph	$695 	7-1/2 x 16	blue^orange	55	120	432	199";


			



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="series_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_transformations_enlarge.html?row="+i, "enlargements", "toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,width=850px,height=700px, left=10px");	 
							OpenWin.focus();
							}



