function checkCheckbox(){
	$("input[type='checkbox']").each(function(){
			if($(this).is(':checked')){
				$(this).parent('.checkboxCustom').addClass('checkboxCustomOn');
			} else {
				$(this).parent('.checkboxCustom').removeClass('checkboxCustomOn');
			}
	});	
};


function checkRadio(){
	$("input[type='radio']").each(function(){
		if($(this).is(':checked')){
			$(this).parent('.radioCustom').addClass('radioCustomOn');
		} else {
			$(this).parent('.radioCustom').removeClass('radioCustomOn');
		}
	});	
};



$(function(){
		$("input[type='checkbox']").css('opacity', '0').wrap('<span class="checkboxCustom" />');
		checkCheckbox()
		$("input[type='checkbox']").change(function(){
			checkCheckbox();
		});
		$("input[type='radio']").css('opacity', '0').wrap('<span class="radioCustom" />');
		checkRadio();
		$("input[type='radio']").change(function(){
			checkRadio();
		});
		$(".tolltipColorsWrap .item").append('ehes');
});		
		
		


		
