//*****************************************************************************
// Do not remove this notice.
//
// Copyright 2000-2002 by Mike Hall.
// See http://www.brainjar.com for terms of use.
//*****************************************************************************

//----------------------------------------------------------------------------
// Code to determine the browser and version.
//----------------------------------------------------------------------------

function Browser() {

	var ua, s, i;

	this.isIE    = false;  // Internet Explorer
	this.isNS    = false;  // Netscape
	this.version = null;

	ua = navigator.userAgent;

	s = "MSIE";
	if ((i = ua.indexOf(s)) >= 0) {
		this.isIE = true;
		this.version = parseFloat(ua.substr(i + s.length));
		return;
	}

	s = "Netscape6/";
	if ((i = ua.indexOf(s)) >= 0) {
		this.isNS = true;
		this.version = parseFloat(ua.substr(i + s.length));
		return;
	}

  // Treat any other "Gecko" browser as NS 6.1.

	s = "Gecko";
	if ((i = ua.indexOf(s)) >= 0) {
		this.isNS = true;
		this.version = 6.1;
		return;
	}
}

var browser = new Browser();

//----------------------------------------------------------------------------
// Code for handling the menu bar and active button.
//----------------------------------------------------------------------------

var activeButton = null;

/* [MODIFIED] This code commented out, not needed for activate/deactivate
   on mouseover.

// Capture mouse clicks on the page so any active button can be
// deactivated.

if (browser.isIE)
  document.onmousedown = pageMousedown;
else
  document.addEventListener("mousedown", pageMousedown, true);

function pageMousedown(event) {

  var el;

  // If there is no active button, exit.

  if (activeButton == null)
	return;

  // Find the element that was clicked on.

  if (browser.isIE)
	el = window.event.srcElement;
  else
	el = (event.target.tagName ? event.target : event.target.parentNode);

  // If the active button was clicked on, exit.

  if (el == activeButton)
	return;

  // If the element is not part of a menu, reset and clear the active
  // button.

  if (getContainerWith(el, "DIV", "menu") == null) {
	resetButton(activeButton);
	activeButton = null;
  }
}

[END MODIFIED] */

function buttonClick(event, menuId) {

	var button;


  // Get the target button element.

	if (browser.isIE)
		button = window.event.srcElement;
	else
		button = event.currentTarget;

  // Blur focus from the link to remove that annoying outline.

	button.blur();

  // Associate the named menu to this button if not already done.
  // Additionally, initialize menu display.

	if (button.menu == null) {

		button.menu = document.getElementById(menuId);

		if(button.menu != null){
			if (button.menu.isInitialized == null)

				menuInit(button.menu);
	}
  }

  // [MODIFIED] Added for activate/deactivate on mouseover.

  // Set mouseout event handler for the button, if not already done.

	if (button.onmouseout == null){

		button.onmouseout = buttonOrMenuMouseout;
	}
  // Exit if this button is the currently active one.

	if (button == activeButton){


//	  return false;
		return true;	//サブメニューがあってもジャンプする
	}
  // [END MODIFIED]

  // Reset the currently active button, if any.

	if (activeButton != null){


		resetButton(activeButton);
	}
  // Activate this button, unless it was the currently active one.

	if (button != activeButton) {


		depressButton(button);
		activeButton = button;

	}
	else{


		activeButton = null;
	}
//window.alert("○○が発生しました!!");

	return false;
}

function buttonMouseover(event, menuId) {

	tooltip.style.visibility="visible";		//追加MIRROR
	
	/* ウインドウサイズを取得 */
	var maxX;

	if (browser.isNS) {
		maxX = window.scrollX + window.innerWidth;

		/* 現在のマウスカーソルの位置を取得(イベントアイテムに対するオフセット) */
		var PosX, PosY;
		PosX = window.pageXOffset;
		PosY = window.pageYOffset;
	}
	if (browser.isIE) {
		maxX = Math.max(document.documentElement.scrollLeft, document.body.scrollLeft) +
		(document.documentElement.clientWidth != 0 ? document.documentElement.clientWidth : document.body.clientWidth);

		/* 現在のマウスカーソルの位置を取得(イベントアイテムに対するオフセット) */
		var PosX, PosY;
		PosX = window.event.offsetX;
		PosY = window.event.offsetY;
	}
	

//	alert(PosX + " " + PosY);
	PosX += (maxX - 400) - 100;
	tooltip.style.left= PosX + "px";
	tooltip.style.top = "20px";			

	var button;

  // [MODIFIED] Added for activate/deactivate on mouseover.

  // Activates this button's menu if no other is currently active.

	if (activeButton == null) {
		buttonClick(event, menuId);
		return;
 	}

  // [END MODIFIED]

  // Find the target button element.

	if (browser.isIE)
		button = window.event.srcElement;
	else
		button = event.currentTarget;

  // If any other button menu is active, make this one active instead.

	if (activeButton != null && activeButton != button)
		buttonClick(event, menuId);
}

function depressButton(button) {

	var x, y;

  // Update the button's style class to make it look like it's
  // depressed.

	button.className += " menuButtonActive";

  // [MODIFIED] Added for activate/deactivate on mouseover.

  // Set mouseout event handler for the button, if not already done.

	if (button.onmouseout == null)
		button.onmouseout = buttonOrMenuMouseout;
	
		if(button.menu != null){
			if (button.menu.onmouseout == null)
			button.menu.onmouseout = buttonOrMenuMouseout;
		}
  // [END MODIFIED]

  // Position the associated drop down menu under the button and
  // show it.

	x = getPageOffsetLeft(button);
	y = getPageOffsetTop(button) + button.offsetHeight;

  // For IE, adjust position.

	if (browser.isIE) {
		x += button.offsetParent.clientLeft;
		y += button.offsetParent.clientTop;
	}

	if(button.menu != null){
		button.menu.style.left = x + "px";
		button.menu.style.top	= y + "px";
		button.menu.style.visibility = "visible";
	}
}

function resetButton(button) {

  // Restore the button's style class.

	removeClassName(button, "menuButtonActive");

  // Hide the button's menu, first closing any sub menus.

	if (button.menu != null) {
		closeSubMenu(button.menu);
		button.menu.style.visibility = "hidden";
	}
}

//----------------------------------------------------------------------------
// Code to handle the menus and sub menus.
//----------------------------------------------------------------------------

function menuMouseover(event) {

	var menu;

  // Find the target menu element.

	if (browser.isIE)
		menu = getContainerWith(window.event.srcElement, "DIV", "menu");
	else
		menu = event.currentTarget;

  // Close any active sub menu.

	if (menu.activeItem != null)
		closeSubMenu(menu);
}

function menuItemMouseover(event, menuId) {

	var item, menu, x, y;

  // Find the target item element and its parent menu element.

	if (browser.isIE)
		item = getContainerWith(window.event.srcElement, "A", "menuItem");
 	else
		item = event.currentTarget;
 	menu = getContainerWith(item, "DIV", "menu");

  // Close any active sub menu and mark this one as active.

	if (menu.activeItem != null)
		closeSubMenu(menu);
 	menu.activeItem = item;

  // Highlight the item element.

	item.className += " menuItemHighlight";

  // Initialize the sub menu, if not already done.

	if (item.subMenu == null) {
		item.subMenu = document.getElementById(menuId);
		if (item.subMenu.isInitialized == null)
			menuInit(item.subMenu);
 	}

  // [MODIFIED] Added for activate/deactivate on mouseover.

  // Set mouseout event handler for the sub menu, if not already done.

	if (item.subMenu.onmouseout == null)
		item.subMenu.onmouseout = buttonOrMenuMouseout;

  // [END MODIFIED]

  // Get position for submenu based on the menu item.

	x = getPageOffsetLeft(item) + item.offsetWidth;
	y = getPageOffsetTop(item);

  // Adjust position to fit in view.

	var maxX, maxY;

	if (browser.isNS) {
		maxX = window.scrollX + window.innerWidth;
		maxY = window.scrollY + window.innerHeight;
	}
	if (browser.isIE) {
		maxX = Math.max(document.documentElement.scrollLeft, document.body.scrollLeft) +
			(document.documentElement.clientWidth != 0 ? document.documentElement.clientWidth : document.body.clientWidth);
		maxY = Math.max(document.documentElement.scrollTop, document.body.scrollTop) +
			(document.documentElement.clientHeight != 0 ? document.documentElement.clientHeight : document.body.clientHeight);
	}
	maxX -= item.subMenu.offsetWidth;
	maxY -= item.subMenu.offsetHeight;

	if (x > maxX)
		x = Math.max(0, x - item.offsetWidth - item.subMenu.offsetWidth
			+ (menu.offsetWidth - item.offsetWidth));
	y = Math.max(0, Math.min(y, maxY));

  // Position and show the sub menu.

	item.subMenu.style.left = x + "px";
	item.subMenu.style.top  = y + "px";
	item.subMenu.style.visibility = "visible";

  // Stop the event from bubbling.

	if (browser.isIE)
		window.event.cancelBubble = true;
 	else
		event.stopPropagation();
}

function closeSubMenu(menu) {

	if (menu == null || menu.activeItem == null)
		return;

  // Recursively close any sub menus.

	if (menu.activeItem.subMenu != null) {
		closeSubMenu(menu.activeItem.subMenu);
		menu.activeItem.subMenu.style.visibility = "hidden";
		menu.activeItem.subMenu = null;
 	}
	removeClassName(menu.activeItem, "menuItemHighlight");
	menu.activeItem = null;
}

// [MODIFIED] Added for activate/deactivate on mouseover. Handler for mouseout
// event on buttons and menus.

function buttonOrMenuMouseout(event) {

	var el;

  // If there is no active button, exit.

	if (activeButton == null)
		return;

  // Find the element the mouse is moving to.

	if (browser.isIE)
		el = window.event.toElement;
	else if (event.relatedTarget != null)
		el = (event.relatedTarget.tagName ? event.relatedTarget : event.relatedTarget.parentNode);

  // If the element is not part of a menu, reset the active button.

	if (getContainerWith(el, "DIV", "menu") == null) {
		resetButton(activeButton);
		activeButton = null;
	}
}

// [END MODIFIED]

//----------------------------------------------------------------------------
// Code to initialize menus.
//----------------------------------------------------------------------------

function menuInit(menu) {

	var itemList, spanList;
	var textEl, arrowEl;
	var itemWidth;
	var w, dw;
	var i, j;

  // For IE, replace arrow characters.

	if (browser.isIE) {
		menu.style.lineHeight = "2.5ex";
		spanList = menu.getElementsByTagName("SPAN");
		for (i = 0; i < spanList.length; i++)
			if (hasClassName(spanList[i], "menuItemArrow")) {
			spanList[i].style.fontFamily = "Webdings";
			spanList[i].firstChild.nodeValue = "4";
			}
	}

  // Find the width of a menu item.

	itemList = menu.getElementsByTagName("A");
	if (itemList.length > 0)
		itemWidth = itemList[0].offsetWidth;
	else
		return;

  // For items with arrows, add padding to item text to make the
  // arrows flush right.

	for (i = 0; i < itemList.length; i++) {
		spanList = itemList[i].getElementsByTagName("SPAN");
		textEl	= null;
		arrowEl = null;
		for (j = 0; j < spanList.length; j++) {
			if (hasClassName(spanList[j], "menuItemText"))
				textEl = spanList[j];
			if (hasClassName(spanList[j], "menuItemArrow"))
				arrowEl = spanList[j];
		}
	if (textEl != null && arrowEl != null)
		textEl.style.paddingRight = (itemWidth
			- (textEl.offsetWidth + arrowEl.offsetWidth)) + "px";
 	}

  // Fix IE hover problem by setting an explicit width on first item of
  // the menu.

	if (browser.isIE) {
		w = itemList[0].offsetWidth;
		itemList[0].style.width = w + "px";
		dw = itemList[0].offsetWidth - w;
		w -= dw;
		itemList[0].style.width = w + "px";
	}

  // Mark menu as initialized.

	menu.isInitialized = true;
}

//----------------------------------------------------------------------------
// General utility functions.
//----------------------------------------------------------------------------

function getContainerWith(node, tagName, className) {

  // Starting with the given node, find the nearest containing element
  // with the specified tag name and style class.

	while (node != null) {
		if (node.tagName != null && node.tagName == tagName &&
			hasClassName(node, className))
			return node;
		node = node.parentNode;
 	}

	return node;
}

function hasClassName(el, name) {

	var i, list;

  // Return true if the given element currently has the given class
  // name.

	list = el.className.split(" ");
	for (i = 0; i < list.length; i++)
		if (list[i] == name)
			return true;

	return false;
}

function removeClassName(el, name) {

	var i, curList, newList;

	if (el.className == null)
		return;

  // Remove the given class name from the element's className property.

	newList = new Array();
	curList = el.className.split(" ");
	for (i = 0; i < curList.length; i++)
		if (curList[i] != name)
			newList.push(curList[i]);
	el.className = newList.join(" ");
}

function getPageOffsetLeft(el) {

	var x;

  // Return the x coordinate of an element relative to the page.

	x = el.offsetLeft;
	if (el.offsetParent != null)
		x += getPageOffsetLeft(el.offsetParent);

	return x;
}

function getPageOffsetTop(el) {

	var y;

  // Return the x coordinate of an element relative to the page.

	y = el.offsetTop;
	if (el.offsetParent != null)
		y += getPageOffsetTop(el.offsetParent);

 	return y;
}

function buttonMouseout(){
	tooltip.style.visibility="hidden";
	
}







function menu_b(pagename){

var RootPath;

	switch (pagename){


	case("top"):
		RootPath="./"
		break;
	case ("gallery"):
	case("intro"):
	case ("link"):
	case("sitemap"):
	case("works"):
		RootPath="../";
		break;

	case("event"):
	case("favorite"):
	case("other"):
	
	case("linkcamera"):
	case("linkcos"):
	case("linkpublic"):	
		RootPath = "../../";
		break;
		
	case("list"):
	
	case("linkfavorite"):
	case("linkgraphic"):
		RootPath = "../../../../"
		break;
		
	default:
	}
document.write(

"<DIV class=menuBar style=\"FLOAT: right; WIDTH: 28em\">"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_top');\" "+
"	onclick=\"return buttonClick(event, 'm_top');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\"" + RootPath + "index.html\">Top</A>"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_intro');\" "+
"	onclick=\"return buttonClick(event, 'm_intro');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\""+ RootPath +"intro/intro.htm\">Intro</A>"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_diary');\" "+
"	onclick=\"return buttonClick(event, 'm_diary');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\"http://blog.goo.ne.jp/ksmirror/\">Diary</A>"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_gallery');\" "+
"	onclick=\"return buttonClick(event, 'm_gallery');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\""+ RootPath +"gallery/gallery.htm\">Gallery</A>"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_works');\" "+
"	onclick=\"return buttonClick(event, 'm_works');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\""+ RootPath +"works/works.htm\">Works</A>"+
""+
//"<A class=menuButton "+
//"	onmouseover=\"buttonMouseover(event, 'm_bbs');\" "+
//"	onclick=\"return buttonClick(event, 'm_bbs');\" "+
//"	onMouseOut=\"buttonMouseout();\""+
//"	href=\"http://lemon.candybox.to/ksmirror/mkakikomitai/mkakikomitai.cgi\">BBS</A>"+
//""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_link');\" "+
"	onclick=\"return buttonClick(event, 'm_link');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\""+ RootPath +"link/link.htm\">Link</A>"+
""+
"<A class=menuButton "+
"	onmouseover=\"buttonMouseover(event, 'm_sitemap');\" "+
"	onclick=\"return buttonClick(event, 'm_sitemap');\" "+
"	onMouseOut=\"buttonMouseout();\""+
"	href=\""+ RootPath +"sitemap/sitemap.htm\">Sitemap</A>"+
""+
"</DIV><!-- Main menus. -->"+
""+
"<DIV class=menu id=m_gallery onmouseover=menuMouseover(event)>"+
"	<A class=menuItem href=\""+ RootPath +"gallery/event/event.htm\">event</A> "+
"	<A class=menuItem href=\""+ RootPath +"gallery/other/other.htm\">other</A> "+
"	<DIV class=menuItemSep></DIV>"+
"	<A class=menuItem href=\""+ RootPath +"gallery/favorite/favorite.htm\">favorite</A> "+
"</DIV>"+
""+
"<DIV class=menu id=m_gallery onmouseover=menuMouseover(event)>"+
"	<A class=menuItem href=\""+ RootPath +"gallery/event/event.htm\">event</A> "+
"	<A class=menuItem href=\""+ RootPath +"gallery/other/other.htm\">other</A> "+
"	<DIV class=menuItemSep></DIV>"+
"	<A class=menuItem href=\""+ RootPath +"gallery/favorite/favorite.htm\">landscape</A> "+
"</DIV>"+
""+
"<DIV class=menu id=m_link>"+
"	<A class=menuItem href=\""+ RootPath +"link/cos/cos.htm\">cosplayer</A> "+
"	<A class=menuItem href=\""+ RootPath +"link/camera/camera.htm\">cameraman</A> "+
"	<DIV class=menuItemSep></DIV>"+
"	<A class=menuItem href=\""+ RootPath +"link/public/public.htm\">public</A> "+
"	<DIV class=menuItemSep></DIV>"+
"	<A class=menuItem onmouseover=\"menuItemMouseover(event, 'm_link_other');\" "+
"		onclick=\"return false;\" href=\"#\">"+
"		<SPAN class=menuItemText>other</SPAN>"+
"		<SPAN class=menuItemArrow>&#9654;</SPAN>"+
"	</A> "+
"</DIV>"+
""+
"<DIV class=menu id=m_link_other>"+
"	<A class=menuItem href=\""+ RootPath +"link/other/graphic/graphic.htm\">graphic</A> "+
"	<A class=menuItem href=\""+ RootPath +"link/other/favorite/favorite.htm\">Favorit</A> "+
"</DIV>"+
""+
""+
"<A href=\""+ RootPath +"index.html\"><IMG src=\""+ RootPath +"common/bmhlogo.png\" width=\"100\" height=\"50\" border=\"0\"></A>"+
""+
"<DIV class= \"tooltip\" id=\"tooltip\">"+
"	メニューのルートを選択すると<BR>"+
"	説明のページへジャンプします。<BR>"+
"	サブメニューを選ぶことにより<BR>"+
"	直接ジャンプすることもできます。"+
"</DIV>"

);
}


function footer(pagename){

	var RootPath;

	switch (pagename){

	case("top"):
		RootPath="./";
		break;
	case ("gallery"):
	case("intro"):
	case ("link"):
	case("sitemap"):
	case("works"):
		RootPath="../";
		break;

	case("event"):
	case("favorite"):
	case("other"):
	
	case("linkcamera"):
	case("linkcos"):
	case("linkpublic"):	
		RootPath = "../../";
		break;
		
	case("list"):
	
	case("linkfavorite"):
	case("linkgraphic"):
		RootPath = "../../../../"
		break;
		
	default:
	}
	
	document.write(

"<div class=\"footer\">" +
"このページに存在する「情報」の２次使用を禁止いたします。<BR>" +
"Copyright subsists in all materials on this site. <BR>" +
"<embed" +
"	src=\""+ RootPath + "common/mail.swf\" width=\"100px\" height=\"20px\" " +
"	type=\"application/x-shockwave-flash\" " +
"	pluginspage=\"http://www.macromedia.com/go/getflashplayer\"" +
">" +
"</div>	"
	
	);
	
}

/* 写真のページの広告挿入 */
function AdvertisePhoto()
{
	AddMax = 18;
	
	AddStr = new Array(AddMax);

	i = 0;

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E6TXTE+ISY+686ZL" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www26.a8.net/svt/bgt?aid=081126022858&wid=001&eno=01&mid=s00000002437001046000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=1CAT8M+E6TXTE+ISY+686ZL" alt="">';
	
	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+ENI2R6+758+609HT" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www23.a8.net/svt/bgt?aid=081126022886&wid=001&eno=01&mid=s00000000926001009000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+ENI2R6+758+609HT" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CU0E7M+ULO+CDDY9" target="_blank"><img border="0" width="120" height="90" alt="" src="http://www21.a8.net/svt/bgt?aid=081126022776&wid=001&eno=01&mid=s00000003966002078000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAT8M+CU0E7M+ULO+CDDY9" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NVP2P" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www20.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004011000&mc=1"></a><img border="0" width="1" height="1" src="http://www12.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NVP2P" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+DLEC1E+12C+4MT89T" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www21.a8.net/svt/bgt?aid=081128047822&wid=001&eno=01&mid=s00000000138028018000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAUSV+DLEC1E+12C+4MT89T" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E6TXTE+ISY+5YJRL" target="_blank"><img border="0" width="120" height="600" alt="" src="http://www21.a8.net/svt/bgt?aid=081126022858&wid=001&eno=01&mid=s00000002437001001000&mc=1"></a><img border="0" width="1" height="1" src="http://www11.a8.net/0.gif?a8mat=1CAT8M+E6TXTE+ISY+5YJRL" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+BWO4C2+KU0+HW2Q9" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=081126022720&wid=001&eno=01&mid=s00000002700003005000&mc=1"></a><img border="0" width="1" height="1" src="http://www12.a8.net/0.gif?a8mat=1CAT8M+BWO4C2+KU0+HW2Q9" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NV1XD" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www21.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004008000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NV1XD" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+C9RNN6+ZFU+5Z6WX" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www28.a8.net/svt/bgt?aid=081128047742&wid=001&eno=01&mid=s00000004593001004000&mc=1"></a><img border="0" width="1" height="1" src="http://www14.a8.net/0.gif?a8mat=1CAUSV+C9RNN6+ZFU+5Z6WX" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+ER2ODU+17T8+BZVU9" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www29.a8.net/svt/bgt?aid=081128047892&wid=001&eno=01&mid=s00000005678002015000&mc=1"></a><img border="0" width="1" height="1" src="http://www10.a8.net/0.gif?a8mat=1CAUSV+ER2ODU+17T8+BZVU9" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+EKIWQA+1JAA+HZ2R5" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=081128047881&wid=001&eno=01&mid=s00000007165003019000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=1CAUSV+EKIWQA+1JAA+HZ2R5" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E51N02+1K9K+66WOX" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=081126022855&wid=001&eno=01&mid=s00000007292001040000&mc=1"></a><img border="0" width="1" height="1" src="http://www11.a8.net/0.gif?a8mat=1CAT8M+E51N02+1K9K+66WOX" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CTEYLU+1N24+66OZ5" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www25.a8.net/svt/bgt?aid=081126022775&wid=001&eno=01&mid=s00000007654001039000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+CTEYLU+1N24+66OZ5" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+C9681E+1P3G+6GZCH" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www27.a8.net/svt/bgt?aid=081128047741&wid=001&eno=01&mid=s00000007918001087000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1CAUSV+C9681E+1P3G+6GZCH" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAVL3+AYQEUQ+1POK+601S1" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www28.a8.net/svt/bgt?aid=081129063663&wid=001&eno=01&mid=s00000007994001008000&mc=1"></a><img border="0" width="1" height="1" src="http://www19.a8.net/0.gif?a8mat=1CAVL3+AYQEUQ+1POK+601S1" alt="">';

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNT9G+7X6NJM+5GO+NYP3L" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www28.a8.net/svt/bgt?aid=090130660479&wid=001&eno=01&mid=s00000000708004025000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1HNT9G+7X6NJM+5GO+NYP3L" alt="">';
	/* toy.belmo.com 電脳玩具屋ベルモプログラム(04-1006)  */

	AddStr[i++] = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNT9G+7XS35E+AIM+64Z8X" target="_blank"><img border="0" width="120" height="250" alt="" src="http://www22.a8.net/svt/bgt?aid=090130660480&wid=001&eno=01&mid=s00000001363001031000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1HNT9G+7XS35E+AIM+64Z8X" alt="">';
	/* キャラアニ販売促進プログラム(04-0521)  */

/* Amazon 常に表示 */
document.write('<iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=bmp0d-22&o=9&p=14&l=bn1&mode=toys-jp&browse=13321821&fc1=FFFFFF&lt1=_blank&lc1=FFEA33&bg1=333333&f=ifr" marginwidth="0" marginheight="0" width="160" height="600" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>');

document.write("<BR>");


document.write('<iframe src="http://rcm-jp.amazon.co.jp/e/cm?t=bmp0d-22&o=9&p=14&l=bn1&mode=books-jp&browse=466280&fc1=FFFFFF&lt1=_blank&lc1=FFEA33&bg1=333333&f=ifr" marginwidth="0" marginheight="0" width="160" height="600" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe>');

document.write("<BR>");
/*
	for(i = 0; i < 5; i++){
		AddNum = Math.floor(Math.random() * AddMax);
		document.write(AddStr[AddNum]);
		document.write("<BR><BR><BR>");
	}
*/
}

/* INDEXページの広告挿入 */
function AdvertiseIndex()
{

	var AddStr;

	switch(Math.floor(Math.random() * 12)){
	case (0):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=ZULKZ+FH9R02+348+67RK1" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=060214211936&wid=001&eno=01&mid=s00000000404001044000&mc=1"></a><img border="0" width="1" height="1" src="http://www19.a8.net/0.gif?a8mat=ZULKZ+FH9R02+348+67RK1" alt="">';
		break;
	case (1):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NUMHT" target="_blank"><img border="0" width="234" height="60" alt="" src="http://www28.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004006000&mc=1"></a><img border="0" width="1" height="1" src="http://www14.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NUMHT" alt="">';
		break;
	case (2):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=ZULL0+1UOKJ6+348+TT69D" target="_blank"><img border="0" width="120" height="90" alt="" src="http://www27.a8.net/svt/bgt?aid=060214212112&wid=001&eno=01&mid=s00000000404005007000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=ZULL0+1UOKJ6+348+TT69D" alt="">';
		break;
	case (3):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E6TXTE+ISY+686ZL" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www29.a8.net/svt/bgt?aid=081126022858&wid=001&eno=01&mid=s00000002437001046000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAT8M+E6TXTE+ISY+686ZL" alt="">';
		break;
	case (4):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+BWO4C2+KU0+HWAG1" target="_blank"><img border="0" width="120" height="90" alt="" src="http://www22.a8.net/svt/bgt?aid=081126022720&wid=001&eno=01&mid=s00000002700003006000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1CAT8M+BWO4C2+KU0+HWAG1" alt="">';
		break;
	case (5):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CU0E7M+ULO+CDLO1" target="_blank"><img border="0" width="148" height="234" alt="" src="http://www27.a8.net/svt/bgt?aid=081126022776&wid=001&eno=01&mid=s00000003966002079000&mc=1"></a><img border="0" width="1" height="1" src="http://www10.a8.net/0.gif?a8mat=1CAT8M+CU0E7M+ULO+CDLO1" alt="">';
		break;
	case (6):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NV1XD" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www28.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004008000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NV1XD" alt="">';
		break;
	case (7):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E5N2LU+1BXK+626XT" target="_blank"><img border="0" width="160" height="65" alt="" src="http://www25.a8.net/svt/bgt?aid=081126022856&wid=001&eno=01&mid=s00000006212001018000&mc=1"></a><img border="0" width="1" height="1" src="http://www11.a8.net/0.gif?a8mat=1CAT8M+E5N2LU+1BXK+626XT" alt="">';
		break;
	case (8):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E51N02+1K9K+626XT" target="_blank"><img border="0" width="234" height="60" alt="" src="http://www27.a8.net/svt/bgt?aid=081126022855&wid=001&eno=01&mid=s00000007292001018000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+E51N02+1K9K+626XT" alt="">';
		break;
	case (9):
		AddStr ='<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CTEYLU+1N24+5YZ75" target="_blank"><img border="0" width="234" height="60" alt="" src="http://www28.a8.net/svt/bgt?aid=081126022775&wid=001&eno=01&mid=s00000007654001003000&mc=1"></a><img border="0" width="1" height="1" src="http://www11.a8.net/0.gif?a8mat=1CAT8M+CTEYLU+1N24+5YZ75" alt="">';
		break;
	case (10):
		/* まんが全巻.com */
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNI90+8G8IWI+1892+NVHCX" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www27.a8.net/svt/bgt?aid=090116388511&wid=001&eno=01&mid=s00000005735004010000&mc=1"></a><img border="0" width="1" height="1" src="http://www18.a8.net/0.gif?a8mat=1HNI90+8G8IWI+1892+NVHCX" alt="">';
		break;
	case (11):
		/* キャラアニ販売促進プログラム(04-0521)  */
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNT9G+7XS35E+AIM+65ME9" target="_blank"><img border="0" width="234" height="60" alt="" src="http://www23.a8.net/svt/bgt?aid=090130660480&wid=001&eno=01&mid=s00000001363001034000&mc=1"></a><img border="0" width="1" height="1" src="http://www19.a8.net/0.gif?a8mat=1HNT9G+7XS35E+AIM+65ME9" alt="">';
	default:
		break;
	}
	
	document.write(AddStr);
	
}

function AdvertiseHeader()
{
	var AddStr;
	
	switch(Math.floor(Math.random() * 13)){
	case (0):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=ZULL0+1UOKJ6+348+TYBG1" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=060214212112&wid=001&eno=01&mid=s00000000404005031000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=ZULL0+1UOKJ6+348+TYBG1" alt="">'
		break;
	case (1):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=ZULKZ+FH9R02+348+5YRHD" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www26.a8.net/svt/bgt?aid=060214211936&wid=001&eno=01&mid=s00000000404001002000&mc=1"></a><img border="0" width="1" height="1" src="http://www14.a8.net/0.gif?a8mat=ZULKZ+FH9R02+348+5YRHD" alt="">';
		break;
	case (2):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=ZULL0+1UOKJ6+348+U1J6P" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www25.a8.net/svt/bgt?aid=060214212112&wid=001&eno=01&mid=s00000000404005046000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=ZULL0+1UOKJ6+348+U1J6P" alt="">';
		break;
	case (3):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E6TXTE+ISY+5Z6WX" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www25.a8.net/svt/bgt?aid=081126022858&wid=001&eno=01&mid=s00000002437001004000&mc=1"></a><img border="0" width="1" height="1" src="http://www14.a8.net/0.gif?a8mat=1CAT8M+E6TXTE+ISY+5Z6WX" alt="">';
		break;
	case (4):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+BWO4C2+KU0+HV7V5" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www28.a8.net/svt/bgt?aid=081126022720&wid=001&eno=01&mid=s00000002700003001000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1CAT8M+BWO4C2+KU0+HV7V5" alt="">';
		break;
	case (5):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CU0E7M+ULO+C7LM9" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www23.a8.net/svt/bgt?aid=081126022776&wid=001&eno=01&mid=s00000003966002051000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=1CAT8M+CU0E7M+ULO+C7LM9" alt="">';
		break;
	case (6):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NUES1" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www28.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004005000&mc=1"></a><img border="0" width="1" height="1" src="http://www18.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NUES1" alt="">';
		break;
	case (7):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E51N02+1K9K+61C2P" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www26.a8.net/svt/bgt?aid=081126022855&wid=001&eno=01&mid=s00000007292001014000&mc=1"></a><img border="0" width="1" height="1" src="http://www10.a8.net/0.gif?a8mat=1CAT8M+E51N02+1K9K+61C2P" alt="">';
		break;
	case (8):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E51N02+1K9K+674EP" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www20.a8.net/svt/bgt?aid=081126022855&wid=001&eno=01&mid=s00000007292001041000&mc=1"></a><img border="0" width="1" height="1" src="http://www15.a8.net/0.gif?a8mat=1CAT8M+E51N02+1K9K+674EP" alt="">';
		break;
	case (9):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+CTEYLU+1N24+601S1" target="_blank"><img border="0" width="728" height="90" alt="" src="http://www24.a8.net/svt/bgt?aid=081126022775&wid=001&eno=01&mid=s00000007654001008000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAT8M+CTEYLU+1N24+601S1" alt="">';
		break;
	case (10):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E3URSI+1OVE+609HT" target="_blank"><img border="0" width="728" height="90" alt="" src="http://www25.a8.net/svt/bgt?aid=081126022853&wid=001&eno=01&mid=s00000007889001009000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAT8M+E3URSI+1OVE+609HT" alt="">';
		break;
	case (11):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E4G7EA+1OVE+C2O5D" target="_blank"><img border="0" width="728" height="90" alt="" src="http://www23.a8.net/svt/bgt?aid=081126022854&wid=001&eno=01&mid=s00000007889002028000&mc=1"></a><img border="0" width="1" height="1" src="http://www19.a8.net/0.gif?a8mat=1CAT8M+E4G7EA+1OVE+C2O5D" alt="">';
		break;
	case (12):
		AddStr = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNT9G+7X6NJM+5GO+NY1Y9" target="_blank"><img border="0" width="468" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=090130660479&wid=001&eno=01&mid=s00000000708004022000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1HNT9G+7X6NJM+5GO+NY1Y9" alt="">';
		/*toy.belmo.com 電脳玩具屋ベルモプログラム(04-1006) */
		break;
	default:
		break;
	}
	document.write(AddStr);
	
}
/* ブログサイトの広告 */
function AdvertiseCamera()
{
	AddMax = 10;
	
	AddStr = new Array(AddMax);
	
	AddStr[0] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+ENI2R6+758+609HT" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=081126022886&wid=001&eno=01&mid=s00000000926001009000&mc=1"></a><img border="0" width="1" height="1" src="http://www17.a8.net/0.gif?a8mat=1CAT8M+ENI2R6+758+609HT" alt="">';
	AddStr[1] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAVL3+B1459U+HJ4+HW2Q9" target="_blank"><img border="0" width="100" height="60" alt="" src="http://www29.a8.net/svt/bgt?aid=081129063667&wid=001&eno=01&mid=s00000002272003005000&mc=1"></a><img border="0" width="1" height="1" src="http://www12.a8.net/0.gif?a8mat=1CAVL3+B1459U+HJ4+HW2Q9" alt="">';
	AddStr[2] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E6TXTE+ISY+5YJRL" target="_blank"><img border="0" width="120" height="600" alt="" src="http://www21.a8.net/svt/bgt?aid=081126022858&wid=001&eno=01&mid=s00000002437001001000&mc=1"></a><img border="0" width="1" height="1" src="http://www11.a8.net/0.gif?a8mat=1CAT8M+E6TXTE+ISY+5YJRL" alt="">';
	AddStr[3] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+BWO4C2+KU0+HW2Q9" target="_blank"><img border="0" width="120" height="60" alt="" src="http://www22.a8.net/svt/bgt?aid=081126022720&wid=001&eno=01&mid=s00000002700003005000&mc=1"></a><img border="0" width="1" height="1" src="http://www12.a8.net/0.gif?a8mat=1CAT8M+BWO4C2+KU0+HW2Q9" alt="">';
	AddStr[4] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAT8M+E68I7M+WOY+NV1XD" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www21.a8.net/svt/bgt?aid=081126022857&wid=001&eno=01&mid=s00000004237004008000&mc=1"></a><img border="0" width="1" height="1" src="http://www16.a8.net/0.gif?a8mat=1CAT8M+E68I7M+WOY+NV1XD" alt="">';
	AddStr[5] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+C9RNN6+ZFU+5Z6WX" target="_blank"><img border="0" width="125" height="125" alt="" src="http://www28.a8.net/svt/bgt?aid=081128047742&wid=001&eno=01&mid=s00000004593001004000&mc=1"></a><img border="0" width="1" height="1" src="http://www14.a8.net/0.gif?a8mat=1CAUSV+C9RNN6+ZFU+5Z6WX" alt="">';
	AddStr[6] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAUSV+C9681E+1P3G+6GZCH" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www27.a8.net/svt/bgt?aid=081128047741&wid=001&eno=01&mid=s00000007918001087000&mc=1"></a><img border="0" width="1" height="1" src="http://www13.a8.net/0.gif?a8mat=1CAUSV+C9681E+1P3G+6GZCH" alt="">';
	AddStr[7] = '<a href="http://px.a8.net/svt/ejp?a8mat=1CAVL3+AYQEUQ+1POK+601S1" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www28.a8.net/svt/bgt?aid=081129063663&wid=001&eno=01&mid=s00000007994001008000&mc=1"></a><img border="0" width="1" height="1" src="http://www19.a8.net/0.gif?a8mat=1CAVL3+AYQEUQ+1POK+601S1" alt="">';

	/* まんが全巻.com */
	AddStr[8] = '<a href="http://px.a8.net/svt/ejp?a8mat=1HNI90+8G8IWI+1892+NVHCX" target="_blank"><img border="0" width="100" height="100" alt="" src="http://www27.a8.net/svt/bgt?aid=090116388511&wid=001&eno=01&mid=s00000005735004010000&mc=1"></a><img border="0" width="1" height="1" src="http://www18.a8.net/0.gif?a8mat=1HNI90+8G8IWI+1892+NVHCX" alt="">';

	for(i = 0; i < 5; i++){
		AddNum = Math.floor(Math.random() * AddMax);
		document.write(AddStr[AddNum]);
		document.write("<BR><BR>");
	}

}

