
// ¸Þ´º¹Ù¿Í ÇªÅÍ ¼³Á¤
jQuery(document).ready(function($){
jQuery.easing.def = 'easeOutQuart'; // ¿¡´Ï¸ÞÀÌ¼ÇÀÇ Ã³À½°ú ³¡ÀÇ ÀÚ¿¬½º·¯¿î ¿òÁ÷ÀÓÀ» Á¦¾î
    
    $("#menuBar").animate({ left:"-2%" }, 1000 );

	
	$(".menuOpener").toggle( function(){
	  $("#menuBar").animate({ left:"-90%" }, 1000 )
	  $("#menuBar").css({"background-position":"right -37px"});
	  $(".box_right").add(".box_right h3").add(".box_left").fadeTo("slow", 0.0);

	  
	  },function(){
	  $("#menuBar").animate({left:"-2%"}, 1000 )
	  $("#menuBar").css({"background-position":"right 0px"});
	  $(".box_right").add(".box_right h3").add(".box_left").fadeTo("slow", 1.0);

	});
	
	$("#footer_bgm .soundControl").toggle( function(){
	  $("#footer_bgm").animate({ bottom:"0" }, 1000 )
	  
	  },function(){
	  $("#footer_bgm").animate({bottom:"-21px"}, 1000 )
	});
	
});


