<!-- this comment hides script from script-blind browsers

//****************************************************************************
//	colorpicker.js
//
//	Description:
//		Includes JavaScript files needed to operate the Color Picker in the
//		Web Site Theme Creator
//
//	Created by Christian Web Programming
//
//	Copyright &copy; 2009-2010 by James E. Pettis
//
//	March 14, 2010
//****************************************************************************


//****************************************************************************
//	Included Files
//****************************************************************************
document.write('<script type="text/javascript" src="cp_css3color.js"></script>');
document.write('<script type="text/javascript" src="cp_color_fast.js"></script>');
document.write('<script type="text/javascript" src="cp_colortable.js"></script>');
//document.write('<script type="text/javascript" src="cp_progressbar.js"></script>');
document.write('<script type="text/javascript" src="cp_colorpool.js"></script>');
document.write('<script type="text/javascript" src="cp_pagecolor.js"></script>');


//****************************************************************************
//	function initColorPicker()
//
//	Description:
//		Initializes the color picker.
//
//	Return:
//		None
//****************************************************************************
function initColorPicker()
	{
	initColors();					// gets colors from web page fields
	COLOR_POOL = new ColorPool();
	initializeSampleAreaColors();
	updateColorTable();
	}// end function initColorPicker()


// this comment closes the script-hiding comment -->
