/**
 * Стильные чекбоксы
 *
 * @author AspektLab -> GP
 *
**/

$.fn.styled_checkbox = function(options)
{
	var defaults = {
		css_class: 'jqCheckBox',
		styled_class: 'jqCssCheckBox',
		styled_checked_class: 'jqCssCheckBoxChecked'
	};
	
	var opts = $.extend(defaults, options);
	
	$('.'+opts.css_class).each(function(i)
	{
		var container = this;
		
		$('<a class="'+opts.styled_class+($(this).attr('checked') ? '  '+opts.styled_checked_class : '')+'" onclick="javascript: $(this).next().attr(\'checked\', !$(this).next().attr(\'checked\')); $(this).toggleClass(\''+opts.styled_checked_class+'\'); void(0);"></a>').insertBefore(container);
		$(this).hide();
	});
	
};
