var border = false;

function img_hover(id)
	{
		if (border == true)
		{
		document.getElementById(id).style.width = 186 + 'px';
		document.getElementById(id).style.height = 137 + 'px';
		document.getElementById(id).style.borderWidth = 0 + 'px';
		border = false;
		}
		else
		{
		document.getElementById(id).style.width = 182 + 'px';
		document.getElementById(id).style.height = 133 + 'px';
		document.getElementById(id).style.borderWidth = 2 + 'px';
		border = true;
		}
	}