(function(jQuery){
	var initLayout = function() {
		var hash = window.location.hash.replace('#', '');
		jQuery('#colorSelector').ColorPicker({
			color: '#0000ff',
			onShow: function (colpkr) {
				jQuery(colpkr).fadeIn(500);
				return false;
			},
			onHide: function (colpkr) {
				jQuery(colpkr).fadeOut(500);
				return false;
			},
			onChange: function (hsb, hex, rgb) {
				jQuery('#color1').val('#' + hex);
				jQuery('#color2').val('#' + hex);
				jQuery('#colorSelector div').css('backgroundColor', '#' + hex);
			}
		});
	};

	EYE.register(initLayout, 'init');
})(jQuery)

