﻿// JavaScript Document

$(function (){

moveFlg = 0;
h1 = $("#tabRightIn").height();
h2 = h1 + 60;
h3 = h1 + 63;
$("#tabWrap").css("height",h3 + "px");
$("#tabBox").css("height",h2 + "px");
$("#tabRight").css("height",h1+ "px");
$("#tabRightBottom").css("height",h2 + "px");
$("#tabRightDammy").css("height",h2 + "px");
$("#tabWrap").css("overflow","hidden");


$("#tabLeft p").mouseover(function(){
if(moveFlg == 0){
moveFlg = 1;
$("#tabBox").animate({right:"0px"}, 500, "easeOutCirc", function(){
moveFlg = 2;
});
}
});

$("#tabRightDammy").mouseout(function(){
if(moveFlg == 2){
moveFlg = 1;
$("#tabBox").animate({right:"-172px"}, 500, "easeOutCirc", function(){
moveFlg = 0;
});
}
});


});
