function do_swap(elem, img){
	//img is the string of the image you want to do mouseover for
	//elem is the id of the image
	//	elem_obj = document.getElementById(''+elem);
	//if (elem){
	//elem_obj.src = img;
	//}
	elem.src =img;
}

