$(document).ready(function() {
$(".events.searchPage .input.select .checkbox input:checked").parent(".checkbox").css("background-color","#EB3E15").children("label").css("color","#fff");
$(".checkbox input:checked").parent(".checkbox").addClass("checked").attr("selectedbox",'selected');

$(".events.searchPage .input.select .checkbox").click(function() {
		if ($(this).attr('selectedbox')) {
			$(this).children("input:checkbox").attr('checked',false).end().removeClass("checked");
			$(this).parent().children(".checkbox").not(".checked").css("background-color","#b38c6b").children("label").css("color","#fff").parent('.checkbox').children("input:checkbox").attr("disabled", false);
			$(this).removeAttr('selectedbox');
		} else {
		if ($(this).children("input:checkbox").attr('disabled') == false) {
			$(this).children("input:checkbox").attr('checked',true).end().addClass("checked");
			$(this).css("background-color","#EB3E15").children("label").css("color","#fff");
			$(this).attr('selectedbox','selected');
			}
		}
	});
	
$(".events.searchPage .input.select .checkbox label").click(function() {
		if ($(this).parent('.checkbox').attr('selectedbox')) {
			$(this).parent('.checkbox').children("input:checkbox").attr('checked',false).end().removeClass("checked");
			$(this).parent('.checkbox').parent().children(".checkbox").not(".checked").css("background-color","#b38c6b").children("label").css("color","#fff").parent('.checkbox').children("input:checkbox").attr("disabled", false);
			$(this).parent('.checkbox').removeAttr('selectedbox');
		} else {
		if ($(this).parent('.checkbox').children("input:checkbox").attr('disabled') == false) {
			$(this).parent('.checkbox').children("input:checkbox").attr('checked',true).end().addClass("checked");
			$(this).parent('.checkbox').css("background-color","#EB3E15").children("label").css("color","#fff");
			$(this).parent('.checkbox').attr('selectedbox','selected');
			}
		}
	});

});
