var cnt = 0;
var rankImg;
function rank_counter(rankImg){
	cnt++;
	if(cnt > 10){
		cnt = 1;
	}
			
	if(cnt == 1){
		this.rankImg = document.write('<img src="/img/rank_1.gif" />');				
	}
	if(cnt == 2){
		this.rankImg = document.write('<img src="/img/rank_2.gif" />');				
	}
	if(cnt == 3){
		this.rankImg = document.write('<img src="/img/rank_3.gif" />');				
	}
	if(cnt > 3){
		document.write('<div class="l125"><span class="darkOrangeYellow"><strong>' + cnt + 'ˆÊ</strong></span></div>')
	}
	return rankImg;
}