function changeImage(bigImgID, smallImgID)
{       
	smallImg = document.getElementById(smallImgID).src;
	bigImg = document.getElementById(bigImgID).src;
	//largeTxt = document.getElementById('large_text').innerHTML;
        largeTxt = document.getElementById(bigImgID).getAttribute('alt');
	smallTxt = document.getElementById(smallImgID).getAttribute('alt');

	//document.getElementById(smallImgID).setAttribute('src', bigImg);
	document.getElementById(bigImgID).setAttribute('src', smallImg);

	document.getElementById(bigImgID).setAttribute('width', 486);
	document.getElementById(bigImgID).setAttribute('height', 323);
	
	//document.getElementById(smallImgID).setAttribute('width', 54);
	//document.getElementById(smallImgID).setAttribute('height', 36);
	
	//document.getElementById('large_text').innerHTML = smallTxt;
        document.getElementbyId(bigImgID).setAttribute('alt', smallTxt);
	document.getElementById(smallImgID).setAttribute('alt', largeTxt);
}

