Newbie using sed in a shell script

I'm sure this is an easy one but I can't seem to get it working. Given the following:

for oldName in `ls *.JPG` ;do
newName=<confusion here. how to make sed perform 's/.JPG/_thumb.JPG/g' operation on $oldName>
done

Could someone show me what I'm doing wrong?

Thanks

Ken

Please post a particular question only once - the original is here.