var Index ={
	last: 1,
	boxes: {1:"recent-articles", 2:"comments-logo",3:"register-logo",4:"news-logo"},
	init: function(){
		var el = document.getElementById("search-field");
		el.focus();
		return false;
		new PeriodicalExecuter(function(){
			var rand = (Math.ceil((Math.random()*4)));
			if(this.last != rand){
				var bb = $(this.boxes[this.last]);
				bb.className = "home-box "+this.boxes[this.last];
				this.last = rand;
				var bb = $(this.boxes[this.last]);
				bb.className = "home-box "+this.boxes[this.last]+" sel";
			}
		}.bind(this), 3);
	}
};
Main.onReady(Index.init, Index);