﻿var news = new Array(4);news[0]="▼ 2011/10/01　平成24年度　4月生の願書受付を開始しました！";news[1]="▼ 「チャレンジャー諸君」ITエンジニア科 4月生についてのお知らせ";news[2]="▼ 2011/05/26　醤油工場見学へ行きました！";news[3]="★ 入学式や卒業式、校外学習などのキャンパスライフを公開しています ★";
news[4]="★ 体験入学 随時受付中です！ 開催日、時間もご希望にお応えします！★";var links = new Array(4);links[0]="entrance/bosyu.html";links[1]="info/it-engineer_info.html";links[2]="campasLife/201105_recreation/201105_recreation.html";links[3]="campasLife/index.html";links[4]="ocampas/index.html";var msg = "";var cmd = "";var strCnt = 0;var arrayLinksCnt = 0;var speed = 100;var timerID = null;var flg = false;var msgarea;window.onload = function load(id) {id = "marquee";if(document.getElementById){        msgarea = document.getElementById(id);        msgarea.firstChild.setAttribute("onMouseOver", "scrollStop();");        msgarea.firstChild.setAttribute("onClick", "marquee('marquee');");        msgarea.firstChild.setAttribute("onMouseOut", "marquee('marquee');");        marquee(id);} else {return;}}
function marquee(id){    if(document.getElementById){        msgarea = document.getElementById(id);        if (msgarea.firstChild) {            msgarea.firstChild.href = links[arrayLinksCnt];            msgarea.firstChild.childNodes[0].nodeValue = msg;            flg = true;        } else if (document.all) {            msgarea.innerHTML = msg;            flg = true;        }    } else {    flg = false;    }if(flg) {    if(timerID != null) {    window.clearInterval(timerID);    } else {    msgarea.style.display = "block";    }    if(arrayLinksCnt < news.length) {    if(strCnt < news[arrayLinksCnt].length) {    strCnt++;    msg = news[arrayLinksCnt].slice(0,strCnt);    if(strCnt < news[arrayLinksCnt].length) {    msg = msg + "_";    }    if(speed == 5000) {    speed = 100;    arrayLinksCnt++;    }        } else {        strCnt = 0;        speed = 5000;        }    } else {    strCnt = 0;    arrayLinksCnt = 0;    speed = 100;    }    timerID = window.setInterval("marquee('" + id + "')",speed);}}function scrollStop() {window.clearInterval(timerID);}
