DDS.Highlight = new function() {	var thisO = this;	this._json = null;	this._i = 0;	this._to;	this._length = 0;		this.go = function( json ) {		this._json = json;		this._length = json.length;		this.show();	}		this.show = function() {		if( this._i > this._json.length ) this._i = 0;		var i = Math.round(Math.random()*this._length);		//$('#high_bx').css({ background:'transparent url('+this._json[i]+') center center no-repeat' });		document.getElementById('highlight').src = this._json[i];		//$('#highlight').src(this._json[i]);		this._i++;		this._to = window.setTimeout( function() { thisO.show() }, 2000 );	}}();