$(document).ready(function() {
	// do stuff when DOM is ready
		$('input[type=checkbox],input[type=radio]').prettyCheckboxes({
		checkboxWidth: 13, // The width of your custom checkbox
		checkboxHeight: 13, // The height of your custom checkbox
		className : 'prettyCheckbox', // The classname of your custom checkbox
		display: 'inline' // The style you want it to be display (inline or list)
	});

	
	//alert('register');
});