var count =1;
		$(document).ready( function(){
			$('#checkbox2').attr('checked', true);
			$("#details").hide();
			$("#sorry").hide();
			$("#sorry1").hide();
			$(".cb-enable").click(function(){
				var parent = $(this).parents('.switch');
				$('.cb-disable',parent).removeClass('selected');
				$(this).addClass('selected');
				$('.checkbox',parent).attr('checked', true);
				count++;	
				

				if ((count >= 4) && ($('#checkbox2').is(':checked')==true))
				{
					//show the hidden div
					$("#details").show("fast");
				}
				else
				{     
					//otherwise, hide it
					$("#details").hide("fast");
				}
				
				if($('#checkbox2').is(':checked')==true)
				{
					$("#sorry").hide("fast");
				}
			});
			
			$(".cb-disable").click(function(){
				var parent = $(this).parents('.switch');
				$('.cb-enable',parent).removeClass('selected');
				$(this).addClass('selected');
				$('.checkbox',parent).attr('checked', false);
				count--;
				
				
				
				if ((count >= 4) && ($('#checkbox2').is(':checked')==true))
				{
					//show the hidden div
					$("#details").show("fast");
				}
				else
				{     
					//otherwise, hide it
					$("#details").hide("fast");
				}
				
				if($('#checkbox2').is(':checked')==false)
				{
					$("#sorry").show("fast");
				}
			});
		});
