//js

function allSubmenuHide(){
    $(".pulldown").slideUp('fast');
}

function closeMonitor(id){
    $("#back").show(); 
    $("#back").mouseover(function(){ $("#sub_"+id).slideUp('fast'); $("#back").hide(); });
}


/* トップページのバナー表示非表示関連スクリプト */
function open_image(this_t){
    animate_reset(this_t);
    $("#"+this_t).animate(
        {height:"show"},
        {duration: "normal", easing: "swing"}
    );
}
function close_image(this_t){
    $("#"+this_t).animate(
        {height:"hide"},
        {duration: "normal", easing: "swing"}
    );
}
function animate_reset(this_t){
    var array = new Array('text1', 'text2', 'text3', 'text4');
    for (i = 0; i <= 4; i++) {
         $("#"+array[i]).stop(true, true);
         $("#"+array[i]).hide();
    }
}
