How to use
----------
The script requires a form field element, pass this to the color picker script along with the options, eg assuming your form field has the id cpicker:-

window.addEvent('domready', function(){
var colorInput = document.id('cpicker');

var cpicker = new ColorPicker(colorInput,{cellWidth: 8, cellHeight: 12})
});