//////////////////////////////////////////////
//  Level/Experience/Money Hack!  //
//     By Chocolate570 - 3/16/07    //
//       Don't Edit the Following       //
/////////////////////////////////////////////
lem={  
  level:[],
  exp:"",
  mon:[],
  populate:function() {
    e=this.exp;
    m=this.mon;
    l=this.level;
    $(".spacer").each(function() {
      post=$(this).prev().prev().prev().prev().prev().prev().prev().html();
      curExp=e*post;
      curMon=(m[2]=="before")?m[1]+(m[0]*post):(m[0]*post)+m[1];
      for(i in l){if(l[i]>curExp){continue;}finExp=parseFloat(i)+1;}     
      $(this).before("<dt>Money:</dt><dd>"+curMon+"</dd><dt>Exp:</dt><dd>"+curExp+"</dd><dt>Level:</dt><dd>"+finExp+"</dd>");
    });
  }
}