function swapImage(img_normal,width,height) {
	thisNode = document.getElementById('big_photo');
	thisNode.attributes['src'].value= img_normal;
	thisNode.attributes['width'].value = width;
	thisNode.attributes['height'].value = height;
}
