﻿$(document).ready(function() {
	if ($('#area_block').get(0) != null) {
		$(".area").css("display", "none");
		$('#area_block').click(function() {
			$('.area').slideToggle('normal');
			$('#area_block').css("color", "#ff6699");
			if ($('#selected_area').css("display") == "none")
				$('#selected_area').css("display", "block");
			else
				$('#selected_area').css("display", "none");
		});
	}
	if ($('#more_block').get(0) != null) {
		$('#more_block').click(function() {
			try {
				$('.tr_more').css("display", "table-row");
			}
			catch (e) {//IE6,7対策
				$('.tr_more').css("display", "block");
			}
			$('#tr_more').css("display", "none");

		});
		if ($('.tr_more').get(0) != null) {
			$('.tr_more').css("display", "none");
		}
	}
	if ($('#tr_close').get(0) != null) {
		$('#tr_close').click(function() {
			$('.tr_more').css("display", "none");
			try {
				$('#tr_more').css("display", "table-row");
			}
			catch (e) {//IE6,7対策
				$('#tr_more').css("display", "block");
			}
		});
	}
});

//labelのカーソルを手に
$(function() {
	/*
	$("div > ul > li > label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
	$("div[class^='marea'] > label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
	$("div[class^='nikoniko_sub'] > label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
	$("#keyword input + label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
	$("#photo input + label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
	*/
	$("input + label").bind("mouseenter", function() { $(this).css({ "cursor": "pointer" }); });
});

