<!--

	$(document).ready(function(){
		checkall_initialize();
	});
	
	function checkall_initialize()
	{
		if ($('.checkall').not(':checked').length <= 0)	{
			$('.checkall-master').attr("checked", true);
		} else if ($('.checkall').filter(':checked').length > 0) {
			$('.checkall-master').attr("checked", false);
		}
		
		$('.checkall-master, .checkall').unbind('click');
		$('.checkall-master, .checkall').click(function(){
			if ($(this).hasClass('checkall-master')) {
				$('.checkall').attr("checked", $(this).attr("checked"));
			} else {
				if ($('.checkall').not(':checked').length <= 0)	{
					$('.checkall-master').attr("checked", true);
				} else if ($('.checkall').filter(':checked').length > 0) {
					$('.checkall-master').attr("checked", false);
				}
			}
		});
	}

//-->
