CustomRadio = function(){
	$(".radioGr1 label").click(function () {
		$(".radioGr1 label").removeClass("myradio");
		$(this).addClass("myradio").css({opacity: 1});
	});
	$(".radioGr2 label").click(function () {
		$(".radioGr2 label").removeClass("myradio");
		$(this).addClass("myradio").css({opacity: 1});
	});
	$(".radioGr3 label").click(function () {
		$(".radioGr3 label").removeClass("myradio");
		$(this).addClass("myradio").css({opacity: 1});
	});
}
CustomCheckbox = function(){
	$(".checkbox label").click(function(){
		if ($(this).hasClass('mycheckbox')) { 
			$(this).removeClass('mycheckbox');
			$(this).children('input').removeAttr('checked');
		}
		else {
			$(this).addClass('mycheckbox');
			$(this).children('input').attr('checked','checked');
		}
		return false;
	});
}

$(document).ready(function(){
	CustomRadio();
	CustomCheckbox();
});


