/**************************************
» » Jonas Raoni Soares Silva
» http://www.joninhas.ath.cx
**************************************/

String.prototype.pad = function(l, s, t){ return s || (s = " "), (l -= this.length) > 0 ? (s = new Array(Math.ceil(l / s.length) + 1).join(s)).substr(0, t = !t ? l : t == 1 ? 0 : Math.ceil(l / 2)) + this + s.substr(0, l - t) : this; };


var Sidebar = Class.create();

Sidebar.prototype = {
	content: new Array(
			'Bridging the gaps.',
			'Heritage Conservationists make it last longer.'
		),
	initialize: function() {},
	render: function(target, index) {
			if(index == 'random') {
				index = Math.floor(Math.random() * this.content.length);
			}
			Element.update(target, '<h3 class="sidebar_' + String(index+1).pad(2,'0',0) + '">' + this.content[index] + '</h3>');
		}
}

sb = new Sidebar;