							$(document).ready(function(){ 
							$('.checkboxLabel input').change(
								function() {
								  if ( $(this).is(':checked') ) {    
									$(this).parent().addClass('labelSelected');        
									$(this).attr('checked', true);            
								 
								  } else {
									$(this).parent().removeClass('labelSelected');  
									$(this).attr('checked', false);         
								 
								  }
								}
							);
							
							
							});

