

jQuery(document).ready(
	function(){
		
		/* タブ動作 */
		jQuery("#region_tab").click(function(){
			jQuery("#region").fadeIn("slow");
			jQuery("#horita_map").hide();
			jQuery("#onocom").hide();
			
			jQuery("#region_tab").addClass("current");
			jQuery("#horita_tab").removeClass("current");
			jQuery("#onocom_tab").removeClass("current");
		});

		jQuery("#horita_tab").click(function(){
			jQuery("#region").hide();
			jQuery("#horita_map").fadeIn("slow");
			jQuery("#onocom").hide();
			
			jQuery("#region_tab").removeClass("current");
			jQuery("#horita_tab").addClass("current");
			jQuery("#onocom_tab").removeClass("current");
		});

		jQuery("#onocom_tab").click(function(){
			jQuery("#region").hide();
			jQuery("#horita_map").hide();
			jQuery("#onocom").fadeIn("slow");
			
			jQuery("#region_tab").removeClass("current");
			jQuery("#horita_tab").removeClass("current");
			jQuery("#onocom_tab").addClass("current");
		});

		jQuery("#more_contents").click(function(){
			jQuery("#all_contents").slideDown("slow");
		});

	}
);


