$(function(){

	$('input:checkbox').wrap('<span class="checkbox"></span>');
	$('input:checkbox:checked').parent('span.checkbox').addClass('checkbox-select');

	$('span.checkbox').click(function () {
		if($(this).hasClass('checkbox-select')) {
			$(this).removeClass('checkbox-select');
			$(this).children('input').removeAttr("checked");	
		} else {
			$(this).addClass('checkbox-select');
			$(this).children('input').attr("checked", true);
		}		
	});

});

