var RandImg = {		r : function(n) {		return Math.floor(Math.random()*n);	},		show : function(path, imgId, n) {		var obj = document.getElementById(imgId);		obj.src = 'icon/cover/' + path + '/' + this.r(n) + '.jpg';	}	}RandImg.show('left', 'left_img', 10);RandImg.show('right', 'right_img', 10);