$(document).ready(function(){
	$('#vLineColor1, #vLineColor2, #vLineColor3, #hLineColor1, #hLineColor2, #hLineColor3').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;
		}
	});
});