$(document).ready(function(){
	$('#topLineTextColor, #bottomLineTextColor, #underLineTextColor').ColorPicker({
		targetID : '',
		newTimeout : '',
		
		eventName: 'focus',
		
		onSubmit: function(hsb, hex, rgb, el) {
			$(el).val("#" + hex);
			$(el).ColorPickerHide();
		},
		onChange: function(cal, hex, el) {
			$("#" + targetID).val('#' + hex);
		},
		onBeforeShow: function () {
			$(this).ColorPickerSetColor(this.value);
			targetID = this.id;
		}
	});
});