$(document).ready(function(){
	$('#textColor, #symbolColor').ColorPicker({
		targetID : '',
		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;
		}
	});
	
	setType();
});

function setType()
{
	if ($("#objectType").val() == "images")
	{
		$("#showText").css("display", "none");
		$("#showSymbol").css("display", "none");
		$("#showImage").css("display", "");
	}
	else if ($("#objectType").val() == "symbol")
	{
		$("#showText").css("display", "none");
		$("#showSymbol").css("display", "");
		$("#showImage").css("display", "none");
	}
	else
	{
		$("#showText").css("display", "");
		$("#showSymbol").css("display", "none");
		$("#showImage").css("display", "none");
	}
}