function HeadListWrite(){
	var outStr = "<table border='0' cellspacing='0' cellpadding='0' width='870'>";
	outStr += " <tr>";
	outStr += " <td width='170'><a href='index.html'><img src='headimg/head_logo.gif' width='150' height='36' border='0'></a></td>";
	outStr += " <td valign='bottom' class='f10'>[営業時間] 10：00〜21：00（飲食店は〜21：30）　　<!---<span class='main2s'>[休館日] 年内は休まず営業いたします。</span>---><br><img src='headimg/shin.gif' width='1' height='3' border='0'></td>";
	outStr += " <td align='right' valign='bottom' class='main1s'>更新日：2010.7.28　<br><img src='headimg/shin.gif' width='1' height='3' border='0'></td>";
	outStr += " </tr>";
	outStr += "</table>";
	outStr += " </tr>";
	outStr += "</table>";
	outStr += "<table border='0' cellspacing='0' cellpadding='1' width='870' class='bmain1'>";
	outStr += " <tr>";
	outStr += " <td rowspan='4'><img src='headimg/shin.gif' width='2' height='1' border='0'></td>";
	outStr += " <td colspan='5'><img src='headimg/shin.gif' width='1' height='2' border='0'></td>";
	outStr += " <td rowspan='4'><img src='headimg/shin.gif' width='2' height='1' border='0'></td>";
	outStr += " </tr>";
	outStr += " <tr>";
	outStr += " <td><div id='info' class='header'><a href='info/info.html'><img src='headimg/info_off.gif' width='110' height='18' border='0' alt='インフォメーション'></a></div></td>";
	outStr += " <td><div id='news' class='header'><a href='shop/shopnews.html'><img src='headimg/news_off.gif' width='110' height='18' border='0' alt='ショップニュース'></a></div></td>";
	outStr += " <td><div id='gallery' class='header'><a href='gallery/galleventmap.html'><img src='headimg/gallery_off.gif' width='110' height='18' border='0' alt='ギャラリー＆イベント'></a></div></td>";
	outStr += " <td><div id='ranking' class='header'><a href='ranking/ranking.html'><img src='headimg/ranking_off.gif' width='110' height='18' border='0' alt='ランキング'></a></div></td>";
	outStr += " <td rowspan='2' align='right' width='410'><div class='header'><a href='http://www.centralpark.co.jp/accessmap/parking.html'><img src='headimg/parking_h1_ani.gif' width='376' height='43' border='0' alt='セントラルパーク駐車場のご案内'></a></div></td>";
	outStr += " </tr>";
	outStr += " <tr>";
	outStr += " <td><div id='job' class='header'><a href='http://www.centralpark.co.jp/cgi-bin/shop_search/search_joboffer.pl'><img src='headimg/job_off.gif' width='110' height='18' border='0' alt='ショップ求人情報'></a></div></td>";
	outStr += " <td><div id='card' class='header'><a href='card/card.html'><img src='headimg/card_off.gif' width='110' height='18' border='0' alt='CENPAカード'></a></div></td>";
	outStr += " <td><div id='access' class='header'><a href='accessmap/accessmap.html'><img src='headimg/access_off.gif' width='110' height='18' border='0' alt='アクセス＆駐車場'></a></div></td>";
	outStr += " <td><div id='contact' class='header'><a href='contact/contact_ag.html'><img src='headimg/contact_off.gif' width='110' height='18' border='0' alt='お問い合わせ'></a></div></td>";
	outStr += " </tr>";
	outStr += " <tr>";
	outStr += " <td colspan='5'><img src='headimg/shin.gif' width='1' height='2' border='0'></td>";
	outStr += " </tr>";
	outStr += "</table>";

	self.document.write(outStr);
	self.document.close()
}
function smartOver() {
smartRollover('info'); //ロールオーバーを適用させたい箇所のIDを指定
smartRollover('news');
smartRollover('gallery');
smartRollover('ranking');
smartRollover('job');
smartRollover('card');
smartRollover('access');
smartRollover('contact');
}
function smartRollover(idName) {
if(document.getElementsByTagName) {
var images = document.getElementById(idName).getElementsByTagName("img");
for(var i=0; i < images.length; i++) {

if(images[i].getAttribute("src").match(/_off\./))
{
fileName = new Array(images[i].getAttribute("src").replace("_off.", "_on."));
preImages = new Array();
for (j=0; j<fileName.length; j++)
{
preImages[j] = new Image();
preImages[j].src = fileName[j]; //「_on」の画像をプリロード
}

images[i].onmouseover = function() {
this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on.")); //マウスオーバーで_off→_on
}
images[i].onmouseout = function() {
this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off.")); //マウスが離れたら_on→_off
 }
}
}
}
}
if(window.addEventListener) {
window.addEventListener("load", smartOver, false); //実行
}
else if(window.attachEvent) {
window.attachEvent("onload", smartOver);
}
else{
window.onload = smartOver;
}