<!-- the full contents of this file are included in the head block of your page -->
<!-- note to work we must start with the js/ directory, then the name of the folder -->



<link rel="stylesheet" href="js/prettyCheckable/prettyCheckable.css">

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/prettyCheckable/prettyCheckable.min.js"></script>


<script type="text/javascript">

// See: http://arthurgouveia.com/prettyCheckable/

$().ready(function(){

	$(':checkbox').prettyCheckable({
		color: 'red'
	});

});

</script>