(function($){
	$(document).ready(function($){
		/**************** Colorbox ****************/
		if($.fn.colorbox)
		$('*[colorbox-option*=""],*[colorbox-option]').each(function() {
			eval('var option={'+$(this).attr("colorbox-option")+'}');
			$(this).colorbox(option);
			$(this).removeAttr("colorbox-option");
		});
		if($.fn.colorbox)
		$('*[error-colorbox*=""],*[error-colorbox]').each(function() {
			eval('var option={'+$(this).attr("error-colorbox")+'}');
			option = $.extend({
				html:$(this).html(),
				open:true
			},option);
			$(this).colorbox(option);
			$(this).removeAttr("colorbox-option");
			$(this).hide();
		});
	});
})(jQuery);