window.onload = function Onload()
{
	document.getElementById("td1").style.backgroundColor='FF8135';
}

function mus()
{
window.open('http://www.heartfulpage.com/subwin.htm','subwin','width=300,height=20,\'\',\'\',\'\',\'\',\'\',\'\',\'\',left=0,top=0');
}

function Click(id)
{
	document.getElementById(id).style.backgroundColor='FF8135';
}

function unClick(id1,id2,id3,id4,id5,id6,id7,id8,id9,id10,id11,id12,id13)
{
	document.getElementById(id1).style.backgroundColor='dcdcdc';
	document.getElementById(id2).style.backgroundColor='dcdcdc';
	document.getElementById(id3).style.backgroundColor='dcdcdc';
	document.getElementById(id4).style.backgroundColor='dcdcdc';
	document.getElementById(id5).style.backgroundColor='dcdcdc';
	document.getElementById(id6).style.backgroundColor='dcdcdc';
	document.getElementById(id7).style.backgroundColor='dcdcdc';
	document.getElementById(id8).style.backgroundColor='dcdcdc';
	document.getElementById(id9).style.backgroundColor='dcdcdc';
	document.getElementById(id10).style.backgroundColor='dcdcdc';
	document.getElementById(id11).style.backgroundColor='dcdcdc';
	document.getElementById(id12).style.backgroundColor='dcdcdc';
	document.getElementById(id13).style.backgroundColor='dcdcdc';
}

function Over(id)
{
	if(document.getElementById(id).style.backgroundColor != '#FF8135' &&
	   document.getElementById(id).style.backgroundColor != '#ff8135' &&
           document.getElementById(id).style.backgroundColor != 'FF8135' &&
           document.getElementById(id).style.backgroundColor != 'ff8135')
	{
		document.getElementById(id).style.backgroundColor='ffcccc';
	}
}

function Out(id)
{
	if(document.getElementById(id).style.backgroundColor != '#FF8135' &&
	   document.getElementById(id).style.backgroundColor != '#ff8135' &&
           document.getElementById(id).style.backgroundColor != 'FF8135' &&
           document.getElementById(id).style.backgroundColor != 'ff8135')
	{
		document.getElementById(id).style.backgroundColor='dcdcdc';
	}
}

//ネームスペースを作成
YAHOO.namespace('myTest3');
var scrollSize = "";

//スクロール
YAHOO.myTest3.doScroll = function() {
  //Scrollのインスタンス
  var anim = new YAHOO.util.Scroll('test3',{scroll:{to:[scrollSize,0]}});
  //実行
  anim.animate();
}
