I was searching elsewhere for my solution and stumbled across this script. It is most awesome and works w/o having to grab an add-on/3rd party. Although not very fancy it makes for a working and dependable 'work-around'. Now, if MS (or one here of super-guru status) would provide the 'clean' solution I know I would just soil myself!
'====================animator.hta=================
<html><head><title>Animator</title></head>
<body><script type="text/vbs">
set fso=CreateObject("Scripting.FileSystemObject")
set fldr=fso.GetFolder(".")
for each file in fldr.files
if lcase(right(file.name,4))=".gif" then
document.write "<img src=""" & file.name & """>"
end if
next
</script></body></html>
'=================================================
It would be most desirirable if MS (or one here of super-guru skillsets) would provide the 'clean' solution. If not, this nifty little script is my answer. The only thing lacking with it is a display of each filename. I'll give this topic a week for further dialogue, then mark it as 'Solved' (unless somethings happens sooner).