// +++photo*WAVE++++++++++++++++++++++++++++++++++++++++++++++
//
// jQuerySlider ver1.0
// Since:2007/12/14
// Licensed under the MIT License:
//
// Copyright (c) 2007  http://www.photowave.co.jp
//
// EditiorID:MGN
// EditiorID:
//
// use library:jquery.js,interface.js
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

//HTML読み込み時処理
$(document).ready(function(){
	$("#slideCt").load("template.html");
});



//::: #01 Appetizer Menu :::スライドダウン処理
function slide01(){
$("#slideCt").animate({
    height: 'show'
}, "slow");
$("#food").fadeIn("slow");
$("#food").load("include/appetizer.html");
}

function layer01(){
document.getElementById('food').style.display='none';//レイヤーの初期化
$("#food").fadeIn("slow");
$("#food").load("include/appetizer.html");
}

//::: #02 Main Menu :::スライドダウン処理
function slide02(){
$("#slideCt").animate({
    height: 'show'
}, "slow");
$("#food").fadeIn("slow");
$("#food").load("include/main.html");
}

//フェード処理
function layer02(){
document.getElementById('food').style.display='none';
$("#food").fadeIn("slow");
$("#food").load("include/main.html");
}

//::: #03 Course Menu :::スライドダウン処理
function slide03(){
$("#slideCt").animate({
    height: 'show'
}, "slow");
$("#food").fadeIn("slow");
$("#food").load("include/course.html");
}

//フェード処理
function layer03(){
document.getElementById('food').style.display='none';
$("#food").fadeIn("slow");
$("#food").load("include/course.html");
}


//::: #04 Wine Menu :::スライドダウン処理
function slide04(){
$("#slideCt").animate({
    height: 'show'
}, "slow");
$("#food").fadeIn("slow");
$("#food").load("include/wine.html");
}

//フェード処理
function layer04(){
document.getElementById('food').style.display='none';
$("#food").fadeIn("slow");
$("#food").load("include/wine.html");
}

//::: #01〜04 :::スライドアップ処理
function closeSlide(){
$("#slideCt").animate({
	height: 'hide',
	opacity: 'hide'
}, "slow");
}



