//------------------------------------------------------------------
// info event index list javascript 
//  http://www.skuare.net/test/jscrollable.html
//
	$( function(){	
        var api = $(".scrollable").scrollable( { api: true  } );
        api.move( 24 );
      });   
    //--------------------------------------------------------------
    //
    // calendar から年月を獲得する
	function getYm() 
	{
	    var date = calendar.getDate();
    }

    //--------------------------------------------------------------
    //
    // ym_list から獲得したindex から年月を出し、データを表示する
	function ajax_ym_list( index ) 
	{
        $.ajax({
            type: "POST",
            url: "keylist.php",
            async: false,  // 同期通信
            data: { 
                set_index : index
            },
            success: function( response )
            {
                $("#result").html(response);
            },
                error : function ( response )
            {
                $("#result").html('error');
            }
        });
    }
    

//------------------------------------------------------------------

