$(document).ready(function() {
	$('#detail').hide();
	$('#showdetail').click(function() { 
		$('#detail').show('blind', {direction: 'vertical',easing: 'easeOutBounce'}, 700); 
	});
	
	$('#detail').click(function() { 
		$('#detail').hide('blind', {direction: 'vertical',easing: 'swing'}, 300); 
	});

	$('#hiddeninfo').hide();
	$('#showinfo a').click(function() { 
		$('#hiddeninfo').toggle('blind', {direction: 'vertical',easing: 'easeInOutSine'}, 300); 
	});
	
        for ( var i = 1; i < 10; i++ ){
            if ( ! $('#showgacha'+ i).length ){
                break;
            }
	    $('#hiddengacha'+ i).hide();
	    $('#showgacha'+ i +' a').bind('click', {idx: i}, function(e){ 
	        $('#hiddengacha'+ e.data.idx).toggle('blind', {direction: 'vertical',easing: 'easeInOutSine'}, 300); 
	    });
        }
	
});

