Отражение картинок в постах. © FeroDaR
За основу был взят скрипт  Reflection (Отражение) :: Javascript



Итак, подклучаем модуль Reflect к форуму
То-есть, ставим в HTML-Верх:

1.

<script type="text/javascript" src="http://poinet-ferodar.narod.ru/js/reflect.js"></script>

2.
В HTML-низ:

<script>
function addSpoiler(str,from,internal){
var pos=0,pos2=0,newpos=0
if((pos=str.indexOf("[refi]",from))==-1) return str;
if((pos2=str.indexOf("[/refi]"),pos+6)==-1) return str;
newpos=str.indexOf("[refi]",pos+6)
if(newpos<pos2 && newpos!=-1) str=addSpoiler(str,pos+6,true)
if((pos2=str.indexOf("[/refi]",pos+6))==-1) return str;
str=str.substring(0,pos)+makeSpoiler(str.substring(pos+6,pos2))+str.substring(pos2+7,str.length)
if( str.indexOf("[refi]")!=-1 && internal==false) str=addSpoiler(str,0,false)
return str}
function makeSpoiler(txt){
txt='<img src="' + txt +'" class="reflect">'
return txt}
if(document.URL.indexOf("viewtopic.php")!=-1){
elm=document.getElementById("pun-main").getElementsByTagName("div")
for(x in elm) if(elm[x].className=="post-content"){
var post=elm[x]
post.innerHTML=addSpoiler(post.innerHTML,0,false)}}
</script>


Теги: [refi]примая ссылка на картинку[/refi]
Пример работы: http://testwinzone.spybb.ru/viewtopic.php?id=2#p15
Скрин:
http://s49.radikal.ru/i125/1004/48/bf56fdf247ec.png

P.S: Анимация работает в ИЕ. Хорошо работает в ИЕ.