$(function()
	{

	frameShow();
	$("#menu li ul").addClass("menu_li_ul");

	$(".menu_item").mouseenter(function()
		{
		$(this).children("ul").fadeIn("fast");
		});

	$(".menu_item").mouseleave(function()
		{
		$(this).children("ul").fadeOut("fast");
		});


	$("#tours > li").mouseenter(function()
		{
		$(this).children("ul").fadeIn("fast");
		});

	$("#tours > li").mouseleave(function()
		{
		$(this).children("ul").fadeOut("fast");
		});


		$(".onlineDetailTrOpen").click(function(e) {
			e.preventDefault();
			$(this).parent().parent().next(".onlineDetailTr").toggle();
			});
	});

function frameShow()
	{
	jQuery(".frame").children(":last-child").animate({opacity: 1}, 2000)
	.animate({opacity: 0}, 1000, function()
		{
		jQuery(this).clone().prependTo(jQuery(this).parents("ul")).css({"opacity": "1", "z-index": "1"});
		jQuery(this).remove();
		frameShow();
		});
	}

