/**
 * ezMark (Minified) - A Simple Checkbox and Radio button Styling plugin. This plugin allows you to use a custom Image for 
 * Checkbox or Radio button. Its very simple, small and easy to use.
 * 
 * Copyright (c) Abdullah Rubiyath <http://www.itsalif.info/>.
 * Released under MIT License
 * 
 * @author Abdullah Rubiyath
 * @version 1.0
 * @date June 27, 2010
 */
(
function($)
{
	$.fn.ezMark=function(options){options=options||{};
	var defaultOpt={checkboxCls:options.checkboxCls||'ez-checkbox',radioCls:options.radioCls||'ez-radio',checkedCls:options.checkedCls||'ez-checked',selectedCls:options.selectedCls||'ez-selected',hideCls:'ez-hide'};return this.each(function(){var $this=$(this);var wrapTag=$this.attr('type')=='checkbox'?'<div class="'+defaultOpt.checkboxCls+'">':'<div class="'+defaultOpt.radioCls+'">';
	
	if($this.attr('type')=='checkbox')
	{
		$this.addClass(defaultOpt.hideCls).wrap(wrapTag).click(function(){		
		if($(this).is(':checked'))
		{
			$(this).parent().addClass(defaultOpt.checkedCls);
		}
		else
		{
			$(this).parent().removeClass(defaultOpt.checkedCls);}
		}
		);
		if($this.is(':checked'))
		{
			$this.parent().addClass(defaultOpt.checkedCls);
		}
	}
	else if($this.attr('type')=='radio')
	{
		$this.addClass(defaultOpt.hideCls).wrap(wrapTag).click(function(){
			$('input[name="'+$(this).attr('name')+'"]').each(function(){
				if($(this).is(':checked'))
				{
					$(this).parent().addClass(defaultOpt.selectedCls);
				}
				else
				{
					$(this).parent().removeClass(defaultOpt.selectedCls);
				}
			});
		});
		if($this.is(':checked'))
		{
			$this.parent().addClass(defaultOpt.selectedCls);
		}
	}
});
}})(jQuery);
