$(function(){

/* onmouse/mouseoutによって画像を切り替える*/
    // 偶数行の色を設定
    $('table.stripedtable tr:even').removeClass("evenline").addClass("oddline");
    // 奇数行の色を設定
    $('table.stripedtable tr:odd').removeClass("oddline").addClass("evenline");
  
/* コメントエリアの表示／非表示*/
    // 初期値は非表示
    $('.AccordionPanelContent').hide();
  
    // 表示／非表示の切り替え
    $('.AccordionPanelTab img').click(function(){
        $(this).parent().parent().find('.AccordionPanelContent').toggle("slow");
    });


});

function Option_Change_Ex()
{
    var index = document.FormList.SelectList.selectedIndex;
    document.location = document.FormList.SelectList.options[index].value;
}

function Option_Initialize()
{
    document.FormList.SelectList.options.selectedIndex = 0;
}
