	var int_posileft;		//馬Ｘ
	var int_positop;		//馬Ｙ
	var int_ktu_posileft;	//京浜東北(上り)Ｘ
	var int_ktu_positop;	//京浜東北(上り)Ｙ
	var int_ktd_posileft;	//京浜東北(上り)Ｘ
	var int_ktd_positop;	//京浜東北(上り)Ｙ
	var int_sectioncnt;		//セクション情報？
	var int_speed=25;		//馬移動速度
	var int_ktu_speed=10;	//京浜東北(上り)移動速度
	var int_ktd_speed=10;	//京浜東北(下り)移動速度
	var int_wide=1;			//地図サイズ
	var int_offsetX=100;	//オフセットＸ
	var int_offsetY=50;		//オフセットＹ
	var int_cnt;			//汎用カウンタ

	var int_ktu_sectioncnt=0;	//京浜東北(上り)
	var int_ktd_sectioncnt=0;	//京浜東北(下り)
	var bln_info=false;		//案内中？
	var bln_ktup=false;		//上り電車が来てる
	var bln_ktdown=false;	//下り電車が来てる

	var bln_parking_info=true;	//駐車場表示

	var uphourtime =new Array(23);
	var downhourtime =new Array(23);
	var info_id;
	var ktu_id;
	var kyd_id;


//初期化
	function initial() {

		app = navigator.appName.charAt(0);
		ver = navigator.appVersion.charAt(0);

	    if ((app == "M") && (ver >= 4)) {
			for (intcnt=0; intcnt<6; intcnt++) {
				document.images["parking(" + intcnt + ")"].src="c_images/p.jpg";
			}
		
			//地図位置
			document.all.mapspan.style.left=int_offsetX;
			document.all.mapspan.style.top=int_offsetY;

			//ボタン位置
			document.all.cmdspan1.style.left=10;
			document.all.cmdspan2.style.left=10;
			document.all.cmdspan3.style.left=10;
			document.all.cmdspan4.style.left=10;

			document.all.cmdspan1.style.top=int_offsetY;
			document.all.cmdspan2.style.top=50+int_offsetY;
			document.all.cmdspan3.style.top=100+int_offsetY;
			document.all.cmdspan4.style.top=150+int_offsetY;

			//タイトル位置
			document.all.titlespan.style.left=(document.images["m_map"].width / 2)-(document.images["title"].width / 2)+int_offsetX;
			document.all.titlespan.style.top=10;

			//リンク先位置
			document.all.timeinfo.style.left=int_offsetX;
			document.all.timeinfo.style.top=510+int_offsetY;
			document.all.linkspan.style.left=int_offsetX;
			document.all.linkspan.style.top=540+int_offsetY;
			document.all.reserved.style.left=int_offsetX;
			document.all.reserved.style.top=615+int_offsetY;

			//駐車場位置
			parking_posi();
		} else { location.pathname="ns_access.html"; }
		
	}

//時刻取得
	function timecnt() {
		var hours;
		var minutes;
    
	    date_data = new Date();
		hours=date_data.getHours();
		minutes=date_data.getMinutes();

		for (intcnt=0; intcnt<=uphourtime[hours].length; intcnt++) {
			if ((uphourtime[hours][intcnt]) == minutes) {kt_Arrival(0);}
		}

		for (intcnt=0; intcnt<=downhourtime[hours].length; intcnt++) {
			if ((downhourtime[hours][intcnt]) == minutes) {kt_departure(0);}
		}

	    window.setTimeout("timecnt()", 60000);


	}

//ＪＲ関内時刻表生成
	function timetable() {
		//上り
		uphourtime[0]=new Array(1);   uphourtime[4]=new Array(2);   uphourtime[5]=new Array(4);   uphourtime[6]=new Array(9);
		uphourtime[7]=new Array(14);  uphourtime[8]=new Array(14);  uphourtime[9]=new Array(12);  uphourtime[10]=new Array(7);
		uphourtime[11]=new Array(9);  uphourtime[12]=new Array(9);  uphourtime[13]=new Array(9);  uphourtime[14]=new Array(9);
		uphourtime[15]=new Array(10); uphourtime[16]=new Array(11); uphourtime[17]=new Array(10); uphourtime[18]=new Array(10);
		uphourtime[19]=new Array(10); uphourtime[20]=new Array(10); uphourtime[21]=new Array(10); uphourtime[22]=new Array(6);
		uphourtime[23]=new Array(4);

		uphourtime[0][0]=12; uphourtime[0][1]=33;
		uphourtime[4][0]=31; uphourtime[4][1]=41; uphourtime[4][2]=54;
		uphourtime[5][0]=07; uphourtime[5][1]=24; uphourtime[5][2]=36; uphourtime[5][3]=42; uphourtime[5][4]=51;
		uphourtime[6][0]=02; uphourtime[6][1]=10; uphourtime[6][2]=14; uphourtime[6][3]=20; uphourtime[6][4]=28; uphourtime[6][5]=31; uphourtime[6][6]=38; uphourtime[6][7]=42; uphourtime[6][8]=51; uphourtime[6][9]=57;
		uphourtime[7][0]=00; uphourtime[7][1]=03; uphourtime[7][2]=09; uphourtime[7][3]=13; uphourtime[7][4]=16; uphourtime[7][5]=20; uphourtime[7][6]=25; uphourtime[7][7]=29; uphourtime[7][8]=32; uphourtime[7][9]=35; uphourtime[7][10]=39; uphourtime[7][11]=43; uphourtime[7][12]=48; uphourtime[7][13]=52; uphourtime[7][14]=57;
		uphourtime[8][0]=02; uphourtime[8][1]=05; uphourtime[8][2]=08; uphourtime[8][3]=12; uphourtime[8][4]=17; uphourtime[8][5]=22; uphourtime[8][6]=25; uphourtime[8][7]=30; uphourtime[8][8]=34; uphourtime[8][9]=39; uphourtime[8][10]=43; uphourtime[8][11]=47; uphourtime[8][12]=52; uphourtime[8][13]=55; uphourtime[8][14]=59;
		uphourtime[9][0]=02; uphourtime[9][1]=06; uphourtime[9][2]=09; uphourtime[9][3]=14; uphourtime[9][4]=17; uphourtime[9][5]=23; uphourtime[9][6]=27; uphourtime[9][7]=30; uphourtime[9][8]=36; uphourtime[9][9]=39; uphourtime[9][10]=45; uphourtime[9][11]=49; uphourtime[9][12]=54;
		uphourtime[10][0]=01; uphourtime[10][1]=10; uphourtime[10][2]=20; uphourtime[10][3]=26; uphourtime[10][4]=36; uphourtime[10][5]=41; uphourtime[10][6]=46; uphourtime[10][7]=54;
		uphourtime[11][0]=00; uphourtime[11][1]=05; uphourtime[11][2]=11; uphourtime[11][3]=16; uphourtime[11][4]=25; uphourtime[11][5]=31; uphourtime[11][6]=36; uphourtime[11][7]=41; uphourtime[11][8]=46; uphourtime[11][9]=56;
		uphourtime[12][0]=00; uphourtime[12][1]=06; uphourtime[12][2]=11; uphourtime[12][3]=16; uphourtime[12][4]=25; uphourtime[12][5]=31; uphourtime[12][6]=36; uphourtime[12][7]=40; uphourtime[12][8]=46; uphourtime[12][9]=56;
		uphourtime[13][0]=01; uphourtime[13][1]=06; uphourtime[13][2]=11; uphourtime[13][3]=16; uphourtime[13][4]=25; uphourtime[13][5]=31; uphourtime[13][6]=36; uphourtime[13][7]=40; uphourtime[13][8]=46; uphourtime[13][9]=56;
		uphourtime[14][0]=01; uphourtime[14][1]=06; uphourtime[14][2]=11; uphourtime[14][3]=16; uphourtime[14][4]=26; uphourtime[14][5]=31; uphourtime[14][6]=36; uphourtime[14][7]=41; uphourtime[14][8]=46; uphourtime[14][9]=56;
		uphourtime[15][0]=02; uphourtime[15][1]=06; uphourtime[15][2]=13; uphourtime[15][3]=16; uphourtime[15][4]=25; uphourtime[15][5]=32; uphourtime[15][6]=36; uphourtime[15][7]=41; uphourtime[15][8]=44; uphourtime[15][9]=51; uphourtime[15][10]=54;
		uphourtime[16][0]=02; uphourtime[16][1]=05; uphourtime[16][2]=12; uphourtime[16][3]=15; uphourtime[16][4]=22; uphourtime[16][5]=27; uphourtime[16][6]=34; uphourtime[16][7]=37; uphourtime[16][8]=44; uphourtime[16][9]=48; uphourtime[16][10]=53; uphourtime[16][11]=59;
		uphourtime[17][0]=02; uphourtime[17][1]=09; uphourtime[17][2]=15; uphourtime[17][3]=20; uphourtime[17][4]=25; uphourtime[17][5]=31; uphourtime[17][6]=35; uphourtime[17][7]=43; uphourtime[17][8]=48; uphourtime[17][9]=52; uphourtime[17][10]=55;
		uphourtime[18][0]=01; uphourtime[18][1]=09; uphourtime[18][2]=13; uphourtime[18][3]=19; uphourtime[18][4]=25; uphourtime[18][5]=31; uphourtime[18][6]=37; uphourtime[18][7]=40; uphourtime[18][8]=46; uphourtime[18][9]=52; uphourtime[18][10]=57;
		uphourtime[19][0]=01; uphourtime[19][1]=05; uphourtime[19][2]=09; uphourtime[19][3]=16; uphourtime[19][4]=20; uphourtime[19][5]=26; uphourtime[19][6]=30; uphourtime[19][7]=36; uphourtime[19][8]=41; uphourtime[19][9]=48; uphourtime[19][10]=53;
		uphourtime[20][0]=00; uphourtime[20][1]=04; uphourtime[20][2]=08; uphourtime[20][3]=12; uphourtime[20][4]=20; uphourtime[20][5]=27; uphourtime[20][6]=32; uphourtime[20][7]=38; uphourtime[20][8]=44; uphourtime[20][9]=48; uphourtime[20][10]=56;
		uphourtime[21][0]=03; uphourtime[21][1]=09; uphourtime[21][2]=16; uphourtime[21][3]=19; uphourtime[21][4]=27; uphourtime[21][5]=35; uphourtime[21][6]=40; uphourtime[21][7]=44; uphourtime[21][8]=48; uphourtime[21][9]=55; uphourtime[21][10]=59;
		uphourtime[22][0]=03; uphourtime[22][1]=08; uphourtime[22][2]=14; uphourtime[22][3]=24; uphourtime[22][4]=32; uphourtime[22][5]=48; uphourtime[22][6]=58;
		uphourtime[23][0]=07; uphourtime[23][1]=19; uphourtime[23][2]=23; uphourtime[23][3]=36; uphourtime[23][4]=26;

		//下り
		downhourtime[0]=new Array(4);   downhourtime[1]=new Array(0);   downhourtime[4]=new Array(1);   downhourtime[5]=new Array(2);
		downhourtime[6]=new Array(10);  downhourtime[7]=new Array(10);  downhourtime[8]=new Array(14);  downhourtime[9]=new Array(11);
		downhourtime[10]=new Array(11); downhourtime[11]=new Array(10); downhourtime[12]=new Array(9);  downhourtime[13]=new Array(9);
		downhourtime[14]=new Array(8);  downhourtime[15]=new Array(9);  downhourtime[16]=new Array(10); downhourtime[17]=new Array(9);
		downhourtime[18]=new Array(11); downhourtime[19]=new Array(10); downhourtime[20]=new Array(8);  downhourtime[21]=new Array(9);
		downhourtime[22]=new Array(9);  downhourtime[23]=new Array(5);

		downhourtime[0][0]=03; downhourtime[0][1]=12; downhourtime[0][2]=20; downhourtime[0][3]=28; downhourtime[0][4]=44;
		downhourtime[1][0]=00;
		downhourtime[4][0]=39; downhourtime[4][1]=55;
		downhourtime[5][0]=24; downhourtime[5][1]=37; downhourtime[5][2]=48;
		downhourtime[6][0]=00; downhourtime[6][1]=10; downhourtime[6][2]=19; downhourtime[6][3]=25; downhourtime[6][4]=29; downhourtime[6][5]=32; downhourtime[6][6]=39; downhourtime[6][7]=43; downhourtime[6][8]=48; downhourtime[6][9]=52; downhourtime[6][10]=57;
		downhourtime[7][0]=01; downhourtime[7][1]=11; downhourtime[7][2]=17; downhourtime[7][3]=21; downhourtime[7][4]=32; downhourtime[7][5]=35; downhourtime[7][6]=40; downhourtime[7][7]=44; downhourtime[7][8]=49; downhourtime[7][9]=52; downhourtime[7][10]=58;
		downhourtime[8][0]=04; downhourtime[8][1]=09; downhourtime[8][2]=14; downhourtime[8][3]=18; downhourtime[8][4]=22; downhourtime[8][5]=26; downhourtime[8][6]=29; downhourtime[8][7]=33; downhourtime[8][8]=36; downhourtime[8][9]=40; downhourtime[8][10]=43; downhourtime[8][11]=46; downhourtime[8][12]=51; downhourtime[8][13]=54; downhourtime[8][14]=57;
		downhourtime[9][0]=00; downhourtime[9][1]=04; downhourtime[9][2]=09; downhourtime[9][3]=13; downhourtime[9][4]=17; downhourtime[9][5]=24; downhourtime[9][6]=27; downhourtime[9][7]=34; downhourtime[9][8]=39; downhourtime[9][9]=46; downhourtime[9][10]=50; downhourtime[9][11]=57;
		downhourtime[10][0]=01; downhourtime[10][1]=08; downhourtime[10][2]=11; downhourtime[10][3]=17; downhourtime[10][4]=20; downhourtime[10][5]=27; downhourtime[10][6]=30; downhourtime[10][7]=37; downhourtime[10][8]=42; downhourtime[10][9]=47; downhourtime[10][10]=50; downhourtime[10][11]=58;
		downhourtime[11][0]=02; downhourtime[11][1]=07; downhourtime[11][2]=11; downhourtime[11][3]=18; downhourtime[11][4]=27; downhourtime[11][5]=31; downhourtime[11][6]=37; downhourtime[11][7]=42; downhourtime[11][8]=47; downhourtime[11][9]=51; downhourtime[11][10]=58;
		downhourtime[12][0]=02; downhourtime[12][1]=07; downhourtime[12][2]=11; downhourtime[12][3]=17; downhourtime[12][4]=27; downhourtime[12][5]=31; downhourtime[12][6]=37; downhourtime[12][7]=42; downhourtime[12][8]=47; downhourtime[12][9]=57;
		downhourtime[13][0]=02; downhourtime[13][1]=07; downhourtime[13][2]=11; downhourtime[13][3]=17; downhourtime[13][4]=27; downhourtime[13][5]=32; downhourtime[13][6]=37; downhourtime[13][7]=42; downhourtime[13][8]=47; downhourtime[13][9]=57;
		downhourtime[14][0]=02; downhourtime[14][1]=07; downhourtime[14][2]=12; downhourtime[14][3]=18; downhourtime[14][4]=27; downhourtime[14][5]=31; downhourtime[14][6]=38; downhourtime[14][7]=47; downhourtime[14][8]=57;
		downhourtime[15][0]=02; downhourtime[15][1]=07; downhourtime[15][2]=12; downhourtime[15][3]=18; downhourtime[15][4]=27; downhourtime[15][5]=32; downhourtime[15][6]=37; downhourtime[15][7]=42; downhourtime[15][8]=48; downhourtime[15][9]=57;
		downhourtime[16][0]=02; downhourtime[16][1]=07; downhourtime[16][2]=12; downhourtime[16][3]=20; downhourtime[16][4]=27; downhourtime[16][5]=32; downhourtime[16][6]=36; downhourtime[16][7]=43; downhourtime[16][8]=49; downhourtime[16][9]=52; downhourtime[16][10]=58;
		downhourtime[17][0]=01; downhourtime[17][1]=07; downhourtime[17][2]=16; downhourtime[17][3]=19; downhourtime[17][4]=26; downhourtime[17][5]=33; downhourtime[17][6]=40; downhourtime[17][7]=44; downhourtime[17][8]=49; downhourtime[17][9]=56;
		downhourtime[18][0]=02; downhourtime[18][1]=07; downhourtime[18][2]=14; downhourtime[18][3]=20; downhourtime[18][4]=26; downhourtime[18][5]=30; downhourtime[18][6]=33; downhourtime[18][7]=39; downhourtime[18][8]=45; downhourtime[18][9]=50; downhourtime[18][10]=54; downhourtime[18][11]=57;
		downhourtime[19][0]=00; downhourtime[19][1]=06; downhourtime[19][2]=09; downhourtime[19][3]=15; downhourtime[19][4]=22; downhourtime[19][5]=30; downhourtime[19][6]=35; downhourtime[19][7]=38; downhourtime[19][8]=44; downhourtime[19][9]=49; downhourtime[19][10]=58;
		downhourtime[20][0]=02; downhourtime[20][1]=05; downhourtime[20][2]=14; downhourtime[20][3]=19; downhourtime[20][4]=24; downhourtime[20][5]=32; downhourtime[20][6]=39; downhourtime[20][7]=45; downhourtime[20][8]=54;
		downhourtime[21][0]=03; downhourtime[21][1]=08; downhourtime[21][2]=12; downhourtime[21][3]=15; downhourtime[21][4]=23; downhourtime[21][5]=28; downhourtime[21][6]=35; downhourtime[21][7]=43; downhourtime[21][8]=47; downhourtime[21][9]=57;
		downhourtime[22][0]=00; downhourtime[22][1]=08; downhourtime[22][2]=17; downhourtime[22][3]=25; downhourtime[22][4]=33; downhourtime[22][5]=36; downhourtime[22][6]=44; downhourtime[22][7]=48; downhourtime[22][8]=55; downhourtime[22][9]=58;
		downhourtime[23][0]=09; downhourtime[23][1]=19; downhourtime[23][2]=27; downhourtime[23][3]=39; downhourtime[23][4]=44; downhourtime[23][5]=55;
	}

//駐車場位置
	function parking_posi() {
		document.all.pspan1.style.left = (260 * int_wide) + int_offsetX;	document.all.pspan1.style.top = (150 * int_wide) + int_offsetY;
		document.all.pspan2.style.left = (235 * int_wide) + int_offsetX;	document.all.pspan2.style.top = (245 * int_wide) + int_offsetY;
		document.all.pspan3.style.left = (250 * int_wide) + int_offsetX;	document.all.pspan3.style.top = (350 * int_wide) + int_offsetY;
		document.all.pspan4.style.left = (200 * int_wide) + int_offsetX;	document.all.pspan4.style.top = (250 * int_wide) + int_offsetY;
		document.all.pspan5.style.left = (210 * int_wide) + int_offsetX;	document.all.pspan5.style.top = (200 * int_wide) + int_offsetY;
		document.all.pspan6.style.left = (330 * int_wide) + int_offsetX;	document.all.pspan6.style.top = (295 * int_wide) + int_offsetY;
	}	
	
//駐車場表示／非表示
	function parking_info() {
		if (bln_parking_info==true) {
			document.all.pdisp.style.display="block";
			bln_parking_info=false;
		} else {
			document.all.pdisp.style.display="none";
			bln_parking_info=true;
		}
	}

//馬案内
	function walk_info(int_start) {

		//処理中
		if ((bln_info==true) && (int_start==0)){ 
			//処理中
			int_start=0;
		} else {

			//初回設定
			if (int_start==0) {
				int_sectioncnt=0; 
				int_posileft=(425 * int_wide) + int_offsetX; 
				int_positop=(180 * int_wide) + int_offsetY
				bln_info=true;
			}

			obj_span=document.all.footspan.style;
			obj_span.display="block";

			obj_span.left = int_posileft; 
			obj_span.top=int_positop;
			//section1
			if (int_sectioncnt<=14) { int_posileft = int_posileft + int_wide;	int_positop=int_positop + (1.4 * int_wide);}
			//section2
			if (int_sectioncnt>=15 && int_sectioncnt<=32) {	int_posileft = int_posileft - int_wide;	int_positop=int_positop + (1.2 * int_wide);}
			//section3
			if (int_sectioncnt>=33 && int_sectioncnt<=83) {	int_posileft = int_posileft - int_wide; int_positop=int_positop - (0.64 * int_wide);}
			//section4
			if (int_sectioncnt>=84 && int_sectioncnt<=90) {	obj_span.left=int_posileft; int_posileft = int_posileft - int_wide;}
			//section5
			if (int_sectioncnt>=91 && int_sectioncnt<=131) { int_posileft = int_posileft - int_wide; int_positop=int_positop - (0.7 * int_wide);}
			//section6
			if (int_sectioncnt>=132 && int_sectioncnt<=205) { int_posileft = int_posileft - int_wide; int_positop=int_positop + (0.9 * int_wide);}
			//section7
			if (int_sectioncnt>=206 && int_sectioncnt<=220) { int_posileft = int_posileft - int_wide; int_positop=int_positop - (0.9 * int_wide);}
			//sectionEnd
			if (int_sectioncnt>=300) { 
				obj_span.display="none"; 
				window.clearTimeout(info_id);
				bln_info=false;
			}

			info_id=window.setTimeout("walk_info(1)",int_speed);
			int_sectioncnt++;
		}
	}
//京浜東北線（上り）
	function kt_Arrival(int_ktu) {
	
		//処理中
		if ((bln_ktup==true) && (int_ktu==0)){ 
			//処理中
			int_ktu=0;
		} else {

			//初回設定
			if (int_ktu==0) {
				int_ktu_sectioncnt=0; 
				int_ktu_posileft=(500 * int_wide) + int_offsetX; 
				int_ktu_positop=(250 * int_wide) + int_offsetY;
				bln_ktup=true;
			}

			obj_kt_span=document.all.ktu.style;
			obj_kt_span.left = int_ktu_posileft; 
			obj_kt_span.top=int_ktu_positop;
			obj_kt_span.display="block";

			//section1
			if (int_ktu_sectioncnt<=280) {
				int_ktu_posileft = int_ktu_posileft - int_wide;
				int_ktu_positop = int_ktu_positop - int_wide;
			}
	
			//section2
			if (int_ktu_sectioncnt>=330 && int_ktu_sectioncnt<=700) {
				int_ktu_posileft = int_ktu_posileft - int_wide;	
				int_ktu_positop=int_ktu_positop - int_wide;
			}

			if (int_ktu_sectioncnt>=700) {
				obj_kt_span.display="none";
				window.clearTimeout(ktu_id);
				bln_ktup=false;
			} else {
				ktu_id=window.setTimeout("kt_Arrival(1)",int_ktu_speed);
				int_ktu_sectioncnt++;
			}
		}	
	}

//京浜東北線（下り）
	function kt_departure(int_ktd) {

		//処理中
		if ((bln_ktdown==true) && (int_ktd==0)){ 
			//処理中
			int_ktd=0;
		} else {

			//初回設定
			if (int_ktd==0) { 
				int_ktd_sectioncnt=0; 
				int_ktd_posileft=(-40 * int_wide) + int_offsetX; 
				int_ktd_positop=(-315 * int_wide) + int_offsetY;
				bln_ktdown=true;
			}

			obj_kt_span=document.all.ktd.style;
			obj_kt_span.left = int_ktd_posileft; 
			obj_kt_span.top=int_ktd_positop;
			obj_kt_span.display="block";

			//section1
			if (int_ktd_sectioncnt<=280) {
				int_ktd_posileft = int_ktd_posileft + int_wide;
				int_ktd_positop=int_ktd_positop + int_wide;
			}
			
			//section2
			if (int_ktd_sectioncnt==305) {window.setTimeout("walk_info(0)",1000);}
			if (int_ktd_sectioncnt>=330 && int_ktd_sectioncnt<=650) {
				int_ktd_posileft = int_ktd_posileft + int_wide;
				int_ktd_positop=int_ktd_positop + int_wide;
			}

			//section3
			if (int_ktd_sectioncnt>580) {
				obj_kt_span.display="none"; 
				window.clearTimeout(ktd_id);
				bln_ktdown=false;
			} else {
				ktd_id=window.setTimeout("kt_departure(1)",int_ktd_speed);
				int_ktd_sectioncnt++;
			}	
		}
	}

//地図の拡大／縮小
	function map_wade() {
		//とりあえず消す
		int_sectioncnt=9999;
		int_ktu_sectioncnt=9999;
		int_ktd_sectioncnt=9999;

		document.all.pdisp.style.display="none";

		//係数変更
		if (int_wide==1) { int_wide=2;}
		else { int_wide=1;}
		
		//地図サイズ変更
		document.images["m_map"].width=500 * int_wide;
		document.images["m_map"].height=500 * int_wide; 
		
		//馬サイズ変更
		document.images["walk"].width=32 * int_wide;
		document.images["walk"].height=30 * int_wide; 
		//駐車場サイズ変更
		for (intcnt=0; intcnt<6; intcnt++) {
			document.images["parking(" + intcnt + ")"].height=(16 * int_wide);
			document.images["parking(" + intcnt + ")"].width=(16 * int_wide);
		}
		//駐車場位置変更
		parking_posi();
		//京浜東北変更？
		document.images["ktdown"].width=300 * int_wide; 
		document.images["ktup"].width=300 * int_wide; 
		document.images["ktdown"].height=297 * int_wide; 
		document.images["ktup"].height=297 * int_wide; 

		//タイトル位置変更
		document.all.titlespan.style.left=(document.images["m_map"].width / 2)-(document.images["title"].width / 2)+int_offsetX;

		//リンク先位置変更
		document.all.timeinfo.style.top=(510 * int_wide)+int_offsetY;
		document.all.linkspan.style.top=(550 * int_wide)+int_offsetY;

	}
