function checkall() {
	
	if ($("#checkall").attr("checked") == true){
		$("#categories").checkCheckboxes();
	} else{
		$("#categories").unCheckCheckboxes();
	}

}


$(document).ready(function(){
	
	$("#checkall").click(function(){
		checkall();
	});
	
	$("#nyroModalBg").css({"display":"none"});
	$("#nyroModalContent").css({"display":"none"});
	
	$("#nyroModalBg").fadeIn("slow");
	$("#nyroModalContent").fadeIn("slow");
	
});

