if(lemon == undefined)	var lemon = {};
if(lemon.cx == undefined)lemon.cx = {};
if(lemon.cx.json == undefined)lemon.cx.json = {};
lemon.cx.json.list=function(){
	this.sLanguage=undefined;
}
lemon.cx.json.list.prototype={
	objId:function(id){return document.getElementById(id);},
	init:function(id,aRw,Lang){
		this.sLanguage=Lang;
		for(var i=0;i<=aRw;i++){
			var sList = id+'_'+i;
			YAHOO.util.Event.addListener(sList,'mouseover',this.onChgDarkImg,{oT:this,oo:this.objId(sList)},this);
			YAHOO.util.Event.addListener(sList,'mouseout',this.onChgLightImg,{oT:this,oo:this.objId(sList)},this);
		}
	},
	onChgDarkImg:function(event,args){
		var x=args.oo.id.substr(5,2);
		args.oo.src='themes/Fullon_HQ/images/l_'+this.sLanguage+'/dark/dark_'+x+'.gif';
	},
	onChgLightImg:function(event,args){
		var x=args.oo.id.substr(5,2);
		args.oo.src='themes/Fullon_HQ/images/l_'+this.sLanguage+'/light/light_'+x+'.gif';
	}
}





