var d = document;
var path;
var flag = new Array(16);
function Over(num)
{
path='img/point_'+num+'_over.gif';
d.all['point'+num].src=path;
}
function Out(num)
{
path='img/point_'+num+'.gif';
d.all['point'+num].src=path;
}
function _onload()
{
a1 = new Image(); a1.src = 'img/point_1_over.gif';
a2 = new Image(); a2.src = 'img/point_2_over.gif';
a3 = new Image(); a3.src = 'img/point_3_over.gif';
a4 = new Image(); a4.src = 'img/point_4_over.gif';
a5 = new Image(); a5.src = 'img/point_5_over.gif';
a6 = new Image(); a6.src = 'img/point_6_over.gif';
a7 = new Image(); a7.src = 'img/point_7_over.gif';
a8 = new Image(); a8.src = 'img/point_8_over.gif';
a9 = new Image(); a6.src = 'img/link.gif';
a10 = new Image(); a7.src = 'img/arr_select.gif';
a11 = new Image(); a8.src = 'img/arr_unselect.gif';
};
function ShowContent(num)
{
	if (flag[num]) {
	d.all['m'+num].style.visibility = 'hidden';
	d.all['m'+num].style.display = 'none';
	d.all['i'+num].className = 'unselect';
	flag[num] = false;
	}
	else {
	d.all['m'+num].style.display = 'inline';
	d.all['m'+num].style.visibility = 'visible';
	d.all['i'+num].className = 'select';
	flag[num] = true;
	};
} 

function over_li(num)
{
	d.all['li'+num].className = 'square';
}

function out_li(num) 
{
	d.all['li'+num].className = 'none';
}

