$.fn.cssCheckbox = function () {	$(this).next("label").each(function(){			if ( $(this).prev().checked )				$(this).addClass("checked");						})		.hover( 			function() { $(this).addClass("over"); },			function() { $(this).removeClass("over"); }		)		.click( function() {			$(this)				.toggleClass("checked")				.prev().checked = !$(this).prev().checked;		})		.prev().hide();};