/*------------------------------------------------------------------------------------------------
creation date 2009.9.7
http://www.miturugi.jp
Copyright (C) JIVE Inc. All Rights Reserved.
------------------------------------------------------------------------------------------------*/
/*------------------------------
curtain
------------------------------*/
$(function()  { 
if ($.browser.msie && $.browser.version < 7.0) {
		$("div#leftCurtain , div#rightCurtain , ul#curtain").hide();
}else{
	$("div#leftCurtain").css("position","absolute");
	$("ul#curtain").append("<li><a class='rope'><img src='images/top/rope.png' alt='幕を開く' width='45' height='291'\/><\/a><\/li>");
	$(".ropeHide").hide();

if ($.cookie("curtainopen")) {
		$("div#leftCurtain , div#rightCurtain , .rope").hide(); 
	}
	else{ 
		$.cookie('curtainopen', 'curtain',{ expires: 1 }); 
		$curtainopen = false;  
		$(".rope").click(function(){  
			$(this).blur();  
			if ($curtainopen == false){   
				$(this).stop().animate({top: '0px' }, {queue:false, duration:350, easing:'easeOutBounce'});  
				$("div#leftCurtain , div#rightCurtain").stop().animate({width:'1px'}, 2000 );  
				$curtainopen = true;
			}else{  
				$(this).stop().animate({top: '-40px' }, {queue:false, duration:350, easing:'easeOutBounce'});  
				$("div#leftCurtain").stop().animate({width:'50%'}, 2000 );  
				$("div#rightCurtain").stop().animate({width:'51%'}, 2000 );  
				$curtainopen = false;  
			}  
		return false;  
		});  
	}
}
});
