<!-- 
var arr_swatch_prefix = new Array('AG', 'ALO', 'AND', 'ANG', 'APL', 'ARC', 'AST', 'AST1', 
'AST2', 'ASTB', 'ASTG', 'ASW', 'AUR', 'AVA', 'AVI', 'AZA', 
'BAC', 'BBW', 'BGR', 'BK', 'BKB', 'BKG', 'BKI', 'BKP', 
'BKS', 'BKW', 'BL', 'BLB', 'BLK', 'BLN', 'BLU', 'BM', 
'BON', 'BRD', 'BRN', 'BSH', 'CEY', 'CGY', 'CHA', 'CHP', 
'CHY', 'CIT', 'CLB', 'CLM', 'CMN', 'COF', 'DG', 'DKG', 
'FED', 'FLM', 'FOR', 'FR', 'FRT', 'FS', 'GBK', 'GN', 
'GR', 'GRB', 'GRY', 'GSN', 'GW', 'HIR', 'INF', 'IPL', 
'ITP', 'KHA', 'KPK', 'LA', 'LEG', 'LG', 'LI', 'LLT', 
'LMP', 'MAG', 'MLT', 'NAU', 'NV', 'NVY', 'OC', 'OR', 
'ORB', 'ORG', 'PER', 'PK', 'PKS', 'PNK', 'PST', 'RAV', 
'RBK', 'RD', 'RED', 'RIB', 'RIP', 'ROS', 'RSS', 'RUM', 
'RWT', 'SBB', 'SE', 'SEA', 'SHB', 'SMP', 'SPO', 'STE', 
'SVB', 'SWG', 'TBK', 'TDG', 'TEC', 'TFG', 'TLB', 'TMB', 
'TMC', 'TMO', 'TMR', 'TNV', 'TPU', 'TQ', 'TRE', 'TRK', 
'TRY', 'TVG', 'VI', 'VL', 'WB', 'WCA', 'WDG', 'WED', 
'WG', 'WH', 'WHI', 'WHT', 'WK', 'WM', 'WMA', 'WNE', 
'WNV', 'WO', 'WPU', 'WRO', 'WT', 'WTA', 'WTR', 'WVG', 
'WWT', 'YL'); 
var arr_swatch_name = new Array('Athletic Gray', 'Aloe', 'Andorra', 'Angel Blue', 'Amparo Blue', 'Arcadia', 'Asphalt', 'White with Assorted Color Logos', 
'White with Assorted Logos', 'White with Black Top', 'White with Gray Top', 'Asphalt', 'Aurora Red', 'Aviator', 'Aviator', 'Azalea', 
'Bachelor Button', 'Baby Blue/White', 'Black / Gray', 'Black', 'Black with Spectrum Blue', 'Black/Opal Gray/Bluefin/White', 'Black', 'Black with Pink', 
'Black/White/Seaport', 'Black and White', 'Spectrum Blue', 'Black/Black', 'Black', 'Blue Navy', 'Blue', 'Black', 
'Black', 'Black with Red', 'Brown', 'Blue Ashes', 'Ceylon', 'Cool Gray', 'Chamois', 'Chili Pepper', 
'Cherry Tomato', 'Dark Citron', 'Classic Blue', 'Calm Blue', 'Carmine', 'Coffee', 'Black with Nugget Gold', 'Dark Gray', 
'Federal Blue', 'Flame', 'Formula One', 'Fir Green', 'Frost Gray', 'Festival Fuschia', 'Gold/Black', 'Green Sheen', 
'Gray', 'Grey/Black', 'Gray', 'Graystone', 'Gray with White', 'High Rise/Aviator/Navy/White', 'Inferno', 'Italian Plum', 
'In The Pink', 'Khaki', 'Komen Pink/White', 'Lavender', 'Legion Blue', 'Light Gray', 'Lilac', 'Limelight', 
'Lime Punch', 'Magenta', 'Multi Colored Pattern', 'Nautical Blue', 'Navy', 'Navy', 'Orchid', 'Orange', 
'Orchid Bouquet', 'White with Orange', 'Persimmon Orange', 'Pink', 'Pink Shock', 'White with Pink', 'Pumice Stone', 'Raven', 
'Reflective Black/Blk', 'Red', 'Red', 'Ribbon Red', 'Riptide', 'Rapture Rose', 'Rose of Sharon', 'Rumba Red', 
'Reflective White/White', 'Storm Blue/Black', 'Steel Gray/Kool Gray/Black/Formula One', 'Sea', 'Shadow', 'Smoke Pine', 'Spicy Orange', 'Sterling Blue', 
'Silver Blue with Turkish Tile', 'Dark Shadow', 'Team Black', 'Team Dark Green', 'Total Eclipse', 'Turf', 'Tile Blue', 'Team Brown', 
'Team Cardinal', 'Team Orange', 'Team Maroon', 'Team Navy', 'Team Purple', 'Turquoise', 'Team Red', 'Turkish Tile', 
'Team Royal', 'Team Vegas Gold', 'Violet Wood', 'Wood Violet', 'White with Angel Blue', 'White with Team Cardinal', 'White with Team Dark Green', 'Wedgewood', 
'White and Black with Dark Citron', 'White', 'Whistler Blue', 'White', 'White and Black', 'White Multi', 'White with Team Cardinal', 'Winetasting', 
'White/Navy', 'White with Cherry Tomato', 'White with Team Purple', 'White with Team Royal', 'White', 'White with Aviator', 'White with Team Red', 'White with Team Vegas Gold', 
'White/White', 'Vibrant Yellow'); 

var imgX, imgCtl, cnt; 
var tmpLen; 
imgCtl = document.images; 
for(imgX = 0; imgX < imgCtl.length; imgX++) 
{ 
	if(imgCtl[imgX].name.substring(0, 7) == 'swatch_') 
	{ 
		for(cnt = 0; cnt < arr_swatch_prefix.length; cnt++) 
		{ 
			tmpLen = arr_swatch_prefix[cnt].length; 
			if(('swatch_' + arr_swatch_prefix[cnt] + '_') == imgCtl[imgX].name.substring(0, tmpLen + 8)) 
			{ 
				imgCtl[imgX].title = arr_swatch_name[cnt]; 
				break; 
			} 
		} 
	} 
} 
// --> 

