$(document).ready(function()
{
//----------------------------------------------------------
//--- 検索用 ---
		$("#cont01_search01 p:first").attr("id","cont01_left");
		$("#cont01_search02 p:first").attr("id","cont01_left");
		$("#cont01_search03 p:first").attr("id","cont01_left");
		$("#cont01_search04 p:first").attr("id","cont01_left");

		$("#cont01_search01 h5 input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_search01 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_search02 h5 input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_search02 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_search03 h5 input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_search03 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_search04 h5 input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_search04 p input[@type=checkbox]").attr("checked",checked);
		});

		$("#cont04_search01 p").attr("id","cont04_left");

//----------------------------------------------------------
//--- エントリー用 ---
		$("#cont01_entry01 h6#cont01_job input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_entry01 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_entry02 h6#cont01_job input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_entry02 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_entry03 h6#cont01_job input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_entry03 p input[@type=checkbox]").attr("checked",checked);
		});
		$("#cont01_entry04 h6#cont01_job input[@type=checkbox]").click(function()
		{
			var checked = $(this).attr("checked");
			$("#cont01_entry04 p input[@type=checkbox]").attr("checked",checked);
		});

});