﻿function BindScammerPhoto(){
    var p = $$(".scammerphoto130x150");
    var t;
    p.each(
        function(v,i){
            v.onclick = function(){
                location.href = this.readAttribute("rel");
                this.hide();
            };   
        }
    );
}
document.observe('dom:loaded', BindScammerPhoto); 
