$(function() { 
	$("#selectall").click(function() { 
		$("input[name='ids']").each(function() { 
			$(this).attr("checked", true); 
		}); 
	}); 
	$("#fanall").click(function() { 
		$("input[name='ids']").each(function() { 
			if($(this).attr("checked")) {
				$(this).attr("checked", false); 
			}else{
				$(this).attr("checked", true); 
			}
		}); 
	}); 
	$("#deselectall").click(function() { 
		$("input[name='ids']").each(function() { 
			$(this).attr("checked", false); 
		}); 
	});
	$("#alertall").click(function() { 
		$("input[name='ids']").each(function() { 
			if($(this).attr("checked")) {
				alert($(this).val());
			}
		}); 
	});
}); 