//イメージの読込み
function Imges()
{
if(window.document.images)
{
btimg01ov=new Image();
btimg01ov.src="/img/home-bt_ov.gif";
btimg02ov=new Image();
btimg02ov.src="/img/onshoping-bt_ov.gif";
btimg03ov=new Image();
btimg03ov.src="/img/howbuy-bt_ov.gif";
btimg04ov=new Image();
btimg04ov.src="/img/sboutshop-bt_ov.gif";
btimg05ov=new Image();
btimg05ov.src="/clearcase/img/ipod-topbt_ov.gif";
btimg06ov=new Image();
btimg06ov.src="/clearcase/img/nano1-topbt_ov.gif";
btimg07ov=new Image();
btimg07ov.src="/clearcase/img/nano2-topbt_ov.gif";
btimg08ov=new Image();
btimg08ov.src="/clearcase/img/casetop-bt_ov.gif";
btimg09ov=new Image();
btimg09ov.src="/clearcase/img/ipod-bt_ov.gif";
btimg10ov=new Image();
btimg10ov.src="/clearcase/img/nano1-bt_ov.gif";
btimg11ov=new Image();
btimg11ov.src="/clearcase/img/nano2-bt_ov.gif";
btimg12ov=new Image();
btimg12ov.src="http://www.daytreman.com/img/seminer_botn-ov.gif";
btimg13ov=new Image();
btimg13ov.src="http://www.daytreman.com/img/back_bt-ov.gif";
btimg14ov=new Image();
btimg14ov.src="http://www.daytreman.com/img/next_bt-ov.gif";

btimg01ac=new Image();
btimg01ac.src="/img/home-bt.gif";
btimg02ac=new Image();
btimg02ac.src="/img/onshoping-bt.gif";
btimg03ac=new Image();
btimg03ac.src="/img/howbuy-bt.gif";
btimg04ac=new Image();
btimg04ac.src="/img/sboutshop-bt.gif";
btimg05ac=new Image();
btimg05ac.src="/clearcase/img/ipod-topbt.gif";
btimg06ac=new Image();
btimg06ac.src="/clearcase/img/nano1-topbt.gif";
btimg07ac=new Image();
btimg07ac.src="/clearcase/img/nano2-topbt.gif";
btimg08ac=new Image();
btimg08ac.src="/clearcase/img/casetop-bt.gif";
btimg09ac=new Image();
btimg09ac.src="/clearcase/img/ipod-bt.gif";
btimg10ac=new Image();
btimg10ac.src="/clearcase/img/nano1-bt.gif";
btimg11ac=new Image();
btimg11ac.src="/clearcase/img/nano2-bt.gif";
btimg12ac=new Image();
btimg12ac.src="http://www.daytreman.com/img/seminer_botn.gif";
btimg13ac=new Image();
btimg13ac.src="http://www.daytreman.com/img/back_bt.gif";
btimg14ac=new Image();
btimg14ac.src="http://www.daytreman.com/img/next_bt.gif";
}
}

//イベントの動き
function on(imgName){
if(window.document.images)
	{
		onImage=eval(imgName+"ac.src");
		document[imgName].src=onImage;
	}
}

function off(imgName){
if(window.document.images)
	{
		offImage=eval(imgName+"ov.src");
		document[imgName].src=offImage;
	}
}

Imges();


// ここから画像ウインドウオープンスクリプト
function openPicturesWindow(the_url, the_width, the_height)
{
    var the_features = "width=" + the_width + ",height=" + the_height+", scrollbars, resizable";
    var the_window = window.open(the_url, "", the_features);
}
