// JavaScript Document

$(document).ready(function(){
	$('dt.on a').click(function(){
		var nameBox = $(this).parent().parent().attr('id');

		$('dt.off').css("display","none");
		$('dt.on').css("display","block");
		$('dd').css("display","none");

//		$('dl#'+nameBox).childNodes('*').css("display","block");
		$('dl#'+nameBox).children('*').slideDown("slow");
		$(this).parent().css("display","none");
	});

	$('dt.off a').click(function(){
		var nameBox = $(this).parent().parent().attr('id');

		$('dl#'+nameBox).children('*').slideUp("normal");
		$('dl#'+nameBox).children(':first-child').fadeIn("normal");
	});


	$('td.boxMenuMidle ul li').hover(function(){
		$(this).css("opacity","0.60");;
	},
		function(){
			$(this).css("opacity","100");;
	});


	$('button.botSession').hover(function(){
		$(this).css("opacity","0.60");;
	},
		function(){
			$(this).css("opacity","100");;
	});
});
