// image changing function 
function imgSwap(_elem, _img)
{
	document.getElementById(_elem).src = _img;
}

