/*change image*/
function swapimg(imgname,chg){
	document.images[imgname].src = chg;
}

data = new Array("../img/g_menu01on.gif","../img/g_menu02on.gif","../img/g_menu02on.gif","../img/g_menu04on.gif","../img/g_menu05on.gif","../img/h_menu01on.gif","../img/h_menu02on.gif","../img/h_menu03on.gif","../img/h_menu04on.gif","../img/h_menu05on.gif","../img/h_menu06on.gif","../babytheater/img/navi_02on.gif","../babytheater/img/navi_03on.gif","../babytheater/img/navi_04on.gif","../babytheater/img/navi_05on.gif","../babytheater/img/navi_06on.gif","../babytheater/img/navi_07on.gif","../babytheater/img/navi_08on.gif");
preload= new Array();
for (i=0; i<data.length; i++)
{
	preload[i] = new Image();
	preload[i].src = data[i];
}


/*pop up window*/
function html(html,target,w,h) {
	var w1;
	w1 = window.open("", target,"toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no, width="+w+",height="+h);
	w1.location.href=html
	w1.focus();
}
