var bol1 = false;
var bol2 = false;

function more1()
{
	eff1.toggle();
	bol1 = !bol1;
	document.getElementById('img_box1').src = bol1 ? 'images/bl2.gif' : 'images/bl1.gif';
}
function more2()
{
	eff2.toggle();
	bol2 = !bol2;
	document.getElementById('img_box2').src = bol2 ? 'images/bl2.gif' : 'images/bl1.gif';
}
