$(function() {
	$("#hallsetting").click(function(){
		$(this).hide();
		$("#hallsetting2").show();
		$("#hallsetting3").show();
	});
	$("#hallsetting3").click(function(){
		$(this).hide();
		$("#hallsetting2").hide();
		$("#hallsetting").show();
	});
	

	$(".secwinhover").hover(function(){
		$(this).children(".sectitle").children(".more").show();
	}, function(){
		$(this).children(".sectitle").children(".more").hide();
	});
	

	$(".divclose").click(function(){
		$(this).parent().hide();
	});

	$("a#abouticons").hover(function(){
		$(this).parent().next().fadeIn();
	}, function(){
		$(this).parent().next().hide();
	});

	$("#appnav_question").click(function(){
		$("#questionta").toggle();
	});

	$("#appnav_message").click(function(){
		$("#messageta").toggle();
	});

	$("#getmore").click(function(){
		$("#moreoptions").toggle();
	});

	$("#moremsgtip").click(function(){
		$("#msg1").toggle();
		$("#msg2").toggle();
	});

	$("#newmsgs").hover(function(){
		$("#newmsgs_list").show();
	}, function(){
		$("#newmsgs_list").hide();
	});

	$("#nonewmsgs").hover(function(){
		$("#nonewmsgs_list").show();
	}, function(){
		$("#nonewmsgs_list").hide();
	});

	$(".headpic").hover(function(){
		$(this).children(".starinfo").show();
	}, function(){
		$(this).children(".starinfo").hide();
	});

	$("#bsing ul:even").addClass("evenitem");

	$("#tip_pop_bookdesc_link").click(function(){
		$("#tip_pop_bookdesc").toggle();
	});

	$("#tip_pop_bannerdesc_link").click(function(){
		$("#tip_pop_bannerdesc").toggle();
	});

	$("#tip_pop_eavedesc_link").click(function(){
		$("#tip_pop_eavedesc").toggle();
	});

	$("#tip_pop_insertwebpic_link").click(function(){
		$("#tip_pop_insertwebpic").toggle();
	});

	$("#tip_pop_insertvideo_link").click(function(){
		$("#tip_pop_insertvideo").toggle();
	});

	$("#tip_pop_workdesc_link").click(function(){
		$("#tip_pop_workdesc").toggle();
	});

	$("#tabnav_profile_t").hover(function(){
		$("#tabnav_profile").show();
	});
	$("#tabnav_profile").hover(function(){
	}, function(){
		$(this).hide();
	});

	$(".logitem-book").hover(function(){
		$(this).children(".content").children(".stat").children(".action").show();
	}, function(){
		$(this).children(".content").children(".stat").children(".action").hide();
	});

	$(".inputText").focus(function() {
		$(this).addClass("inputTextFocus").blur(function() {
			$(this).removeClass("inputTextFocus");
			$(this).parent().removeClass("inputTextDivFocus");
		});
		$(this).parent().addClass("inputTextDivFocus");
	});
});