/**
 * @Name     
 * @Desc    サイト全般に使用
 * @Author  inexio[ http://www.inexio.jp ]
 * @Date    2010/08/24 17:23
**/

function sourceReplace()
{  
  if(document.getElementsByTagName)
  {
    var images = document.getElementsByTagName("img");
    for(var i=0; i < images.length; i++)
    {
      if(images[i].getAttribute("src").match("_off."))
      {
        images[i].onmouseover = function()
        {
          this.setAttribute("src", this.getAttribute("src").replace("_off.", "_on."));
        }
        images[i].onmouseout = function()
        {
          this.setAttribute("src", this.getAttribute("src").replace("_on.", "_off."));  
        }
      }
    }
  }
}



if(window.addEventListener)
{
  window.addEventListener("load", sourceReplace, false);
}
else if(window.attachEvent)
{
  window.attachEvent("onload", sourceReplace);
}



function topImage()
{
	document.write("<script type=\"text/javascript\">");
	document.write("$(document).ready(");
	document.write("function(){");
	document.write("$('#topImage').innerfade({");
	document.write("animationtype: 'fade',");
	document.write("speed: 1500,"); //2000
	document.write("timeout: 3500,"); //2000
	document.write("timeoutLast: 3500,"); //8000
	document.write("type: 'sequence',");
	document.write("containerheight: '350px'");
	document.write("});");
	document.write("});");
	document.write("</script>");
	document.write("<h2 id=\"topImage\">");
	document.write("<img src=\"/images/top/img_topimage00.gif\" alt=\"number2 Co.,Lts.\" />");
	document.write("<img src=\"/images/top/img_topimage01.jpg\" alt=\"「8caf&eacute; marunouchi」アーバンなcafe styleの提案\" />");
	document.write("<img src=\"/images/top/img_topimage02.jpg\" alt=\"「8caf&eacute; kokubo」木と緑に囲まれた癒し空間\" />");
	document.write("<img src=\"/images/top/img_topimage03.jpg\" alt=\"「8caf&eacute; lazawalk」FOOD,DESSERT,DRINK...cafeの魅力を存分に\" />");
    document.write("<img src=\"/images/top/img_topimage04.jpg\" alt=\"「8caf&eacute; sweets」azayaka(あざやか)なスウィーツの彩り\" />");
    document.write("<img src=\"/images/top/img_topimage05.jpg\" alt=\"「THREE ARROWS」ワンランク上の珠玉のダイナー\" />");
    document.write("<img src=\"/images/top/img_topimage06.jpg\" alt=\"「Quattro Cafe」PUBLIC COMMUNITY SPACEの提案… \" />");
    document.write("<img src=\"/images/top/img_topimage07.jpg\" alt=\"「Dining六魯」選びぬかれた食材の数々\" />");
    document.write("<img src=\"/images/top/img_topimage08.jpg\" alt=\"「居酒家 かまどか」一食入魂　全てはお客様の笑顔の為に...\" />");
	document.write("</h2>");
}

function cafeImage()
{
	document.write("<script type=\"text/javascript\">");
	document.write("$(document).ready(");
	document.write("function(){");
	document.write("$('#cafeImage').innerfade({");
	document.write("animationtype: 'fade',");
	document.write("speed: 1500,");
	document.write("timeout: 4000,");
	document.write("timeoutLast: 4000,");
	document.write("type: 'sequence',");
	document.write("containerheight: '350px'");
	document.write("});");
	document.write("});");
	document.write("</script>");
	document.write("<h2 id=\"cafeImage\">");
	document.write("<img src=\"/images/brands/8cafe/img_cafeimage01.jpg\" alt=\"NO CAFE, NO LIFE\" />");
	document.write("<img src=\"/images/brands/8cafe/img_cafeimage02.jpg\" alt=\"NO CAFE, NO LIFE\" />");
	document.write("<img src=\"/images/brands/8cafe/img_cafeimage03.jpg\" alt=\"NO CAFE, NO LIFE\" />");
    document.write("<img src=\"/images/brands/8cafe/img_cafeimage04.jpg\" alt=\"NO CAFE, NO LIFE\" />");
	document.write("</h2>");
}


