function over(id){
        document.getElementById(id).style.backgroundImage="url('./images/doska_with_podsvetka.jpg')";
        }
function out(id){
         document.getElementById(id).style.backgroundImage="url('')";
        }

// put html code for medals here in the same order as nicknames above. it will be placed before avatar of corresponding member
var eadorrewards = [
'<span class="smalltxt"><img src="../en/images/7ch/SagesGuild.JPG" width="35" height="35" hspace="10" vspace="10" alt="The Sages Guild" title="The Sages Guild. Гильдия Мудрецов" /></span>',
'<img src="../en/images/7ch/Capitoly.JPG" width="35" height="35" alt="The Capitol" title="The Capitol. Капитолий" />'
];


// this code executes after document is loaded and changes statuses
jQuery(document).ready(function(){
var i=0;
//jQuery("div.forum_about").each(function(){
//jQuery("div.forum_row").each(function(){
jQuery("img.forum_folder").each(function(){

   if(i<1){
//     $(this).before(eadorrewards[i]);
//     $(this).after(eadorrewards[i]);
     i=i+1;
   }

});
});
