var path='/pic/';

function clicked(img)
{
	id=img.id;


	var parent=img.parentNode;

	count=parent.childNodes.length;
	for(var i=0; i<count; i++)
	{
		if((parent.childNodes[i].id==id)&&((parent.childNodes[i].className=='clsShow')||(parent.childNodes[i].className=='clsHide')))
		{
			parent.childNodes[i].className=(parent.childNodes[i].className=='clsShow'?'clsHide':'clsShow');
		}
	}
	if(img.className=='clsHide')
	{
		img.src=path+'plus.gif';
	}
	else
	{
		if(img.className=='clsShow')
		{
			img.src=path+'minus.gif';
		}
	}
}
